Examveda
Examveda

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 ?

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


This Question Belongs to Javascript >> Array And Function

Join The Discussion

Comments ( 1 )

  1. Pranav Malewar
    Pranav Malewar :
    6 years ago

    what is slice method is uesd to?

Related Questions on Array and Function