Skip to content

Latest commit

 

History

History
executable file
·
8 lines (6 loc) · 183 Bytes

File metadata and controls

executable file
·
8 lines (6 loc) · 183 Bytes

.fill(value[, start[, end]])

Populates an array with a specified value.

var arr = [0, 0, 0].fill(7, 1); // [0, 7, 7]
var arr = [0, 0, 0].fill(7);    // [7, 7, 7]