javascript remove first character from array list

Solutions on MaxInterview for javascript remove first character from array list by the best coders in the world

showing results for - "javascript remove first character from array list"
Christopher
14 Sep 2018
1var x = ["X2019","X2020","X2021","X2022"];
2
3var y = x.map(s => s.slice(1));
4
5console.log(y);
similar questions