Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 187 Bytes

expression-trace-next-line.md

File metadata and controls

12 lines (9 loc) · 187 Bytes

Write the next line of the expression trace for the following code:

console.log(4 * (1 + '0' + 1));

EXPRESSION TRACE:

4 * (1 + '0' + 1)
// write the next line here