The method or operator used to identify the array is
Home | Discussion ForumThe method or operator used to identify the array is
isarrayType()
==
===
typeof
Answer : D
View More Related Question
1) Consider the following code snippet :
var a = [1,2,3,4,5];
a.slice(0,3);
What is the possible output for the above code snippet ?
2) What will happen if reverse() and join() methods are used simultaneously ?
Reverses and stores in the same array
Reverses and concatenates the elements of the array
Reverses
All of the mentioned
View Answer
3) The reduce and reduceRight methods follow a common operation called
4) The method or operator used to identify the array is
5) Consider the code snippet given below
var count = [1,,3];
What is the observation made?
The omitted value takes “undefined”
This results in an error
This results in an exception
None of the mentioned
View Answer