JSFiddle - React, Tailwind, and code Playground
by Mitch Greer
JavaScript
var colors = ["red", "green", "blue", "yellow", "purple"];
var colors2 = colors.slice(1);
var colors3 = colors.slice(1,4);
alert(colors2);
alert(colors3);
by Mitch Greer
var colors = ["red", "green", "blue", "yellow", "purple"];
var colors2 = colors.slice(1);
var colors3 = colors.slice(1,4);
alert(colors2);
alert(colors3);