Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

unshift

//see https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Objets_globaux/Array/unshift

const array1 = [1, 2, 3];

console.log(array1.unshift(4, 5));
// expected output: 5

console.log(array1);
// expected output: Array [4, 5, 1, 2, 3]
Comment

unshift()

//The unshift() method adds a new element to an array (at the beginning), and "unshifts" older elements:
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.unshift("Lemon");
//The unshift() method returns the new array length : >> 5


/*if you find this answer is useful ,
upvote ⇑⇑ , so  the others can benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)*/
Comment

unshift

const array1 = [1, 2, 3];

console.log(array1.unshift(4, 5));
// expected output: 5

console.log(array1);
// expected output: Array [4, 5, 1, 2, 3]
Comment

unshift

const cities = ['Manchester', 'Liverpool'];
cities.unshift('Edinburgh');
console.log(cities);     // [ "Edinburgh", "Manchester", "Liverpool" ]
Comment

.unshift

let monTableau = ['un', 'deux','trois', 'quatre'] ;
monTableau.unshift('zero') ; 
//console.log(monTableau) ;
 
 

 let monTableau2D = [
     ['Mark' , 'jeff' , 'Bill'] , 
     ['Zuckerberg' , 'Bezos' , 'Gates']
 ] ;
 monTableau2D[1].unshift('test') ; 
 //console.log(monTableau2D) ; 
Comment

PREVIOUS NEXT
Code Example
Javascript :: add event listener on width screen resize 
Javascript :: javascript string methods 
Javascript :: nodejs aws s3 stream upload 
Javascript :: useScreens() react native 
Javascript :: javascript map max value 
Javascript :: moment cdn 
Javascript :: js markdown to html 
Javascript :: javascript get value 
Javascript :: if datatable is null js 
Javascript :: how to print object in JavaScript, Object print in JavaScript 
Javascript :: Write the JavaScript code to set the width of element to 50%; 
Javascript :: Set timeouts to XMLHttpRequests in javascript 
Javascript :: javascript run command 
Javascript :: jquery get value from array of objects 
Javascript :: swal change confirm button class 
Javascript :: jquery check if exist 
Javascript :: javascript websocket 
Javascript :: start a react native project with type script 
Javascript :: restfull api methods 
Javascript :: What is data modeling in MongoDB 
Javascript :: javascript array add front 
Javascript :: js get random from array 
Javascript :: iiee javascript 
Javascript :: list all functions in an object js 
Javascript :: route component with props 
Javascript :: if not undefined javascript 
Javascript :: javascript isalphanumeric 
Javascript :: javascript stop the form from reloading 
Javascript :: nidejs aws sdk s3 copy 
Javascript :: javascript onload complete 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =