Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 175 Bytes

expression-trace-mathematical.md

File metadata and controls

7 lines (6 loc) · 175 Bytes

Write the expression trace for line 1 and line 2 for the following code:

let a = 33 % 7 - 4 + ((117 / 13) * 3);
let b = (a % 6) / (11 - a / 4 );
console.log(a, b);