Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

find remainder in javascript

// find remainder in javascript
// The remainder operator (%) returns the remainder left over when one operand is divided by a second operand. It always takes the sign of the dividend.

let remainder = 10 % 3;
console.log(remainder); // 1

console.log(13 % 5);
// expected output: 3

console.log(-13 % 5);
// expected output: -3

console.log(4 % 2);
// expected output: 0

console.log(-4 % 2);
// expected output: -0
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #find #remainder #javascript
ADD COMMENT
Topic
Name
1+5 =