mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
16 lines
333 B
JavaScript
16 lines
333 B
JavaScript
function assert(x) { if (!x) throw 1; }
|
|
|
|
try {
|
|
var names = Object.getOwnPropertyNames([1, 2, 3]);
|
|
|
|
assert(names.length === 4);
|
|
assert(names[0] === '0');
|
|
assert(names[1] === '1');
|
|
assert(names[2] === '2');
|
|
assert(names[3] === 'length');
|
|
|
|
console.log("PASS");
|
|
} catch (e) {
|
|
console.log("FAIL: " + e);
|
|
}
|