array.fill js code example

Example 1: js tan-1

Math.atan(2);

Example 2: javascript fill array

const fill = new Array(5).fill(0)
console.log(fill) // [ 0,0,0,0,0]

Example 3: fill array with values javascript

let filledArray = new Array(10).fill({'hello':'goodbye'});

Example 4: array fill

new Array(5).fill('element')
// ["element", "element", "element", "element", "element"]

Example 5: create array javascript fill

const tempArr = new Array(2000).fill({ "tile": "oh fuck this sheet", "content": "some fucked up palce hodler texte here let's do this sheet" })

Example 6: .pop js

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

Tags:

Java Example