Consider the following code snippet :
var a = [1,2,3,4,5];
a.sli
Home | Discussion Forum
a.sli
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 ?
Returns [1,2,3].
Returns [4,5].
Returns [1,2,3,4].
Returns [1,2,3,4,5].
Answer : A
View More Related Question
1) 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
2) Consider the following code snippet
var a1 = [,,,];
The result would be
var a2 = new Array(3);
0 in a1
0 in a2
3) 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
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) 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 ?