last index array javascript code example
Example 1: last index array javascript
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];
Example 2: js last index of
const str = "Users/Edit/12345";
let idx = str.lastIndexOf("/");
idx = str.lastIndexOf("x");
idx = str.lastIndexOf("Edit")
idx = str.lastIndexOf("edit")
idx = str.lastIndexOf("s");
idx = str.lastIndexOf("s", 3);
Example 3: last item in array javascript
const array = ['a', 's', 'd', 'f'];
const last = array.pop();
console.log(last);
console.log(array);