1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 19:45:07 +00:00
serenity/Base/home/anon/js/array.js
Andreas Kling a82f64d3d6 LibJS: Parse ArrayExpression and start implementing Array objects
Note that property lookup is not functional yet.
2020-03-20 21:56:40 +01:00

8 lines
97 B
JavaScript

var a = [1, 2, 3];
console.log(a);
/*
for (var i = 0; i < 3; ++i) {
console.log(a[i]);
}
*/