fill aray elements js code example
Example 1: fill array with values javascript
let filledArray = new Array(10).fill({'hello':'goodbye'});
Example 2: js pad array
function padArray(arr, size, fill=null) {
return arr.concat(Array(size - arr.length).fill(fill));
}