1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 09:35:07 +00:00
serenity/Libraries/LibJS/Tests/Object.getOwnPropertyNames.js
2020-03-29 01:26:57 +01:00

15 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);
}