What does the code snippet to the right output by console.log?
console.log
let a = 1 const b = ++a const c = a++ console.log(a) console.log(b) console.log(c)
Source Fromopen in new window