Answers for "array [:-1] to js"

4

create an array from 1 to n javascript

Array.from(Array(10).keys())
//=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

[...Array(10).keys()]
//=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Array.from({length: 10}, (_, i) => i + 1)
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Posted by: Guest on October-28-2020
0

array -1 javascript

//The index of any item that does not exist in an array is -1

//example:
a = ["help","I'm","a","sentient","array"];
a.indexOf("Icecream");//this returns -1
Posted by: Guest on April-25-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language