What is the value of a after executing the following code?
a
let a = 3; let b = 4; a *= b;
3
4
12
NaN