Consider the following code snippet :
if (!a[i]) continue;
Home | Discussion Forum
Consider the following code snippet :
if (!a[i]) continue;
What is the observation made ?
Skips the undefined elements
Skips the non existent elements
Skips the null elements
All of the mentioned
Answer : D
View More Related Question
1) 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
2) The reduce and reduceRight methods follow a common operation called
3) The pop() method of the array does which of the following task ?
decrements the total length by 1
increments the total length by 1
prints the first element but no effect on the length
None of the mentioned
View Answer
4) 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
5) The primary purpose of the array map() function is that it
maps the elements of another array into itself
passes each element of the array and returns the necessary mapped elements
passes each element of the array on which it is invoked to the function you specify, and returns an array containing the values returned by that function
None of the mentioned
View Answer