js create array with same values code example
Example 1: javascript repeat element in array
Array(5).fill(2)
//=> [2, 2, 2, 2, 2]
Example 2: js create array with default value
Array(24).fill(0)
Array(5).fill(2)
//=> [2, 2, 2, 2, 2]
Array(24).fill(0)