repl.txt (506B)
1 2 {{alias}}( value[, level] ) 3 Returns an array of an object's inherited property names and symbols. 4 5 If provided `null` or `undefined`, the function returns an empty array. 6 7 Parameters 8 ---------- 9 value: any 10 Input value. 11 12 level: integer (optional) 13 Inheritance level. 14 15 Returns 16 ------- 17 symbols: Array 18 List of an object's inherited property names and symbols. 19 20 Examples 21 -------- 22 > var symbols = {{alias}}( [] ) 23 24 See Also 25 -------- 26