Contact: aviboots(AT)netvision.net.il
38,528 questions
50,197 answers
573 users
let arr = [[1, 2, 3], [34, 65, 12], [874, 761, 993]]; arr.shift(); console.log(arr); /* run: [ [ 34, 65, 12 ], [ 874, 761, 993 ] ] */