summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-38.js
blob: 525a253207d98868faea52a0da0aec770a0b929f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.2.3.4-4-38
description: >
    Object.getOwnPropertyNames - own data properties are pushed into
    the returned array
---*/

        var obj = { "a": "a" };

        var result = Object.getOwnPropertyNames(obj);

assert.sameValue(result[0], "a", 'result[0]');