javascript remainder function

JavaScript
console.log(10%3);
//returns 1 (the remainder of 10/3)12 % 5  //  2
Source

Also in JavaScript: