Answers for "Which of the following method prepend list to the front of the array, and returns the number of elements in the new array? * 1 point push @ARRAY, LIST pop @ARRAY shift @ARRAY unshift @ARRAY, LIST?mcq"

10

unshift method in javascript

var name = [ "john" ];
name.unshift( "charlie" );
name.unshift( "joseph", "Jane" );
console.log(name);

//Output will be
[" joseph "," Jane ", " charlie ", " john "]
Posted by: Guest on August-02-2020

Code answers related to "Which of the following method prepend list to the front of the array, and returns the number of elements in the new array? * 1 point push @ARRAY, LIST pop @ARRAY shift @ARRAY unshift @ARRAY, LIST?mcq"

Code answers related to "Javascript"

Browse Popular Code Answers by Language