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