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