// 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