What two values will this code print? Others February 11, 2022Neha DograLeave a Comment on What two values will this code print? function printA() { console.log(answer); var answer = 1; } printA(); printA(); 1 then 1 1 then undefined undefined the undefined undefined the 1