Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 164 Bytes

expression-trace-a-b-modulo-line-2.md

File metadata and controls

7 lines (6 loc) · 164 Bytes

Write an expression trace for the second line of the following code:

let a = 20 / 5 + (3 % (5 * 3));
let b = (1 + (a % 7)) / (a + 1);
console.log(a, b);