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