What two values will this code print?
function printA() { console.log(answer); var answer = 1; } printA(); printA();
undefined then undefined
undefined
undefined then 1
1
1 then undefined
1 then 1