var array = [];

for (var x = 0; x < 100; x++) {

array.push(x);

}

console.log(array);

SyntaxError: Unexpected token ';'
View all comments