fork download
  1. var ary = ['first', 'second', 'third', 'fourth', 'fifth'];
  2. console.log(Object.values(ary)[0]);
  3. console.log(ary[0]);
  4. ary.shift();
  5. console.log(Object.values(ary)[0] + ' ' + JSON.stringify(ary));
  6. console.log(ary[0] + ' ' + JSON.stringify(ary));
Success #stdin #stdout 0.07s 31660KB
stdin
Standard input is empty
stdout
first
first
second ["second","third","fourth","fifth"]
second ["second","third","fourth","fifth"]