2014-07-22 01:09:02 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
|
|
/*---
|
|
|
|
info: >
|
|
|
|
15.5.5.2 defines [[GetOwnProperty]] for Strings. It supports using indexing
|
|
|
|
notation to look up non numeric property names.
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.5.5.5.2-7-3
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
String object indexing returns undefined if the numeric index is
|
|
|
|
greater than the string length
|
|
|
|
---*/
|
|
|
|
|
|
|
|
var s = new String("hello world");
|
|
|
|
|
2015-08-06 18:23:58 +02:00
|
|
|
assert.sameValue(s[11], undefined, 's[11]');
|