Question 13
Which of the following best explains what will be printed to the console when we execute the following code and why?
o NaN will be printed because the allthings array would now be pointing to an empty object.
o 60 will be printed because the allthings array has the reference to the object that something was pointing to.
o 60 will be printed because the allthings array has the copy of the object that something has been pointing to.
o The code will not execute because there is a syntax error.
o NaN will be printed because the allthings array is null.
o The code will not execute because allthings array is now null.