remove first and last element from array javascript and seprated by comma

Solutions on MaxInterview for remove first and last element from array javascript and seprated by comma by the best coders in the world

showing results for - "remove first and last element from array javascript and seprated by comma"
Victor
26 Mar 2020
1var p = ",32111_10589,32111_10591,32111_10593,32111_10613,32111_10590,32111_10592,32111_10594,32111_10614,32111_10595,32111_10593_5673,32111_10593_5674,32111_10590_5651,32111_10592_5669,32111_10594_5671,32111_10614_5687,32111_10590_5652,32111_10592_5670,32111_10594_5672,32111_10614_5688,32111_10595_5675,32111_10595_5676,";
2
3  // remove first and last element from array and seprated elements by comma.
4  var ar = p.slice(1,-1).split(',');
5