fork download
  1. var array = ['a', 'b', 'c'];
  2. array.abc = 'xyz';
  3. console.log(array.hasOwnProperty('abc')); // true
  4. console.log(array.hasOwnProperty('0')); // true
  5. console.log(array.hasOwnProperty('length')); // true
  6.  
Success #stdin #stdout 0.02s 16872KB
stdin
Standard input is empty
stdout
true
true
true