mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
344 B
19 lines
344 B
|
|
/*===
|
|
0 string 0
|
|
1 string 1
|
|
2 string 2
|
|
3 string length
|
|
===*/
|
|
|
|
/* The virtual 'length' property of a string object (as opposed to a
|
|
* string value) was not included in getOwnPropertyNames() output.
|
|
*/
|
|
|
|
var obj = Object.getOwnPropertyNames(new String('foo'));
|
|
var i;
|
|
|
|
for (i = 0; i < obj.length; i++) {
|
|
print(i, typeof obj[i], obj[i]);
|
|
}
|
|
|
|
|