Q. What does this function return?
Code:function test() {
return typeof arguments;
}
Dear candidates you will find MCQ questions of JavaScript here. Learn these questions and prepare yourself for coming examinations and interviews. You can check the right answer of any question by clicking on any option or by clicking view answer button.
Share your questions by clicking Add Question
function test() {
return typeof arguments;
}
console.log('5' + 1);
console.log(typeof NaN);
setTimeout(() => console.log('Hello'), 0);
false == '0';