Mod: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''
''result'' = ''x'' Mod ''y''
''result'' = ''x'' Mod ''y''


Line 15: Line 17:
Answer = 21 Mod 3.7
Answer = 21 Mod 3.7
Print "21 Mod 3.7 = " & Answer
Print "21 Mod 3.7 = " & Answer
</pre>
== Example (JavaScript) ==
<pre>
// Mod Example
/* Mod returns quotient remainder as integer */
var Answer;
Answer = 15 % 2;
NSB.Print("15 Mod 2 = " + Answer);
Answer = 21 % 3.7;
NSB.Print("21 Mod 3.7 = " + Answer);
</pre>
</pre>



Revision as of 18:09, 24 March 2019

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

result = x Mod y

Description

Mod divides x by y and returns the integer part of the remainder. The required parameters, x and y, are any valid numeric expressions. The value of result is a whole number with a magnitude less than the magnitude of y.

Example (Basic)

Rem Mod Example
'Mod returns quotient remainder as integer
Dim Answer
Answer = 15 Mod 2
Print "15 Mod 2 = " & Answer
Answer = 21 Mod 3.7
Print "21 Mod 3.7 = " & Answer

Output

15 Mod 2 = 1
21 Mod 3.7 = 2.5