Discussion Forum : Array And Function
Question - 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 ?
Options:
A .  Returns [1,2,3]
B .  Returns [4,5]
C .  Returns [1,2,3,4]
D .  Returns [1,2,3,4,5]
Answer: Option A

Submit Your Solution Below and Earn Points !
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *