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