← Back to Question List
JavaScript Code Walkthrough #39
Remainders with Modulo
📄 Code
Read carefully — what does this print?1let n = 17;2console.log(n % 5);3console.log(n % 2);4console.log(10 % 3);