This is how input is set up:
input type="number" ng-model="yourNum" placeholder="Enter a number here"
I want to now parse this numerical input and perform the modulo function on it, and then print a statement.
I know I can use the modulo function, I'm wondering how to print statements based on the result. Ex: if (yourNum % 3 == 0) print "hello"
I'm having trouble using ng-if