use .fill to initialise Arrays

This commit is contained in:
Thomas Grainger 2017-04-13 18:43:38 +01:00
parent d41d56e670
commit 5b03a84be8
No known key found for this signature in database
GPG key ID: 995EA0A029283160
3 changed files with 3 additions and 14 deletions

View file

@ -713,13 +713,9 @@ const IP = {
ip2 = IP._strToIpv6(range[14]);
let t = "",
total = new Array(128),
total = new Array(128).fill(),
i;
// Initialise total array to "0"
for (i = 0; i < 128; i++)
total[i] = "0";
for (i = 0; i < 8; i++) {
t = (ip2[i] - ip1[i]).toString(2);
if (t !== "0") {