blob: 0a8fb9fc99f4d04bb11b923bf815bfd905d58373 [file] [log] [blame]
description(
"This test checks that accessing a string by an out of bounds index doesn't crash, furthermore the string should not appear to have out-of-bounds numeric properties."
);
shouldBeUndefined('"x"[10]');
shouldBeFalse('"x".hasOwnProperty(10)');