Answers for "array.fill("

0

javascript fill array

const fill = new Array(5).fill(0)
console.log(fill) // [ 0,0,0,0,0]
Posted by: Guest on October-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language