I cannot find same problem online. IE 11 gives error \"Object doesn\'t support property or method fill\".
fill
var arr = new Array(5); arr.fill(false
You could use Array.apply for getting an array with the wanted length and then map the value to it.
var a = Array.apply(null, { length: 5 }).map(function () { return false; }); console.log(a);