You need to evaluate the following code segment. Line numbers are included for reference only.
01 var n;
02 console.log(typeof n);
03 var a =”3.4”;
04 console.log(typeof a);
05 var textArray=[“Welcome Back”], “Enter a Name”, “Incorrect Answer”];
06 console.log(typeof textArray);
07 var c=2.4;
08 console.log(typeof c);
09 var tag=null;
10 console.log(typeof tag);
Use the drop-down menus to select the answer choice that answers each question based on the information presented in the code segment.
What does the console.log function on lines 02,04,06,08,10 write to the console?