Consider the following code snippet :
  var a = [];
a.unshift(1);

Home | Discussion Forum

Consider the following code snippet :

  var a = [];
a.unshift(1);
a.unshift(22);
a.shift();
a.unshift(3,[4,5]);
a.shift();
a.shift();
a.shift();

The final output for the shift() is

View More Related Question

2) The pop() method of the array does which of the following task ?

3) Consider the following code snippet :

  var a = [];
a.unshift(1);
a.unshift(22);
a.shift();
a.unshift(3,[4,5]);
a.shift();
a.shift();
a.shift();

The final output for the shift() is

4) Consider the following code snippet

  var a1 = [,,,];
var a2 = new Array(3);
0 in a1
0 in a2
The result would be

5) Consider the following code snippet :

 if (!a[i]) continue;

What is the observation made ?

UP Gk Online Test

taiyari24hour.com

Study 2 Online Says....
Kindly log in or signup.