array from index to index javascript code example
Example 1: js array get index
var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple"); // Returns 2
Example 2: js index to index
let array = [5, "Foo", 3, "Bar"];
array.slice(2);
// Output = [3, "Bar"]
let string = "Volvo Cars";
string.slice(2);
// Output = "lvo cars"