Write Your JavaScript Code Here
Run
Copy Code
// unShift:- add the element at the beginning of the array; const arr=[2,3,4,5,6,7]; arr.unshift(1,4); console.log(arr);
Output: