how to find last occurrence of a character in a string in javascript code example
Example 1: javascript get last n characters of string
'abc'.slice(-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: lastindexof js
string.lastIndexOf("subString")
Example 4: find the last occurrence of a character in a string javascript
str.lastIndexOf(searchValue[, fromIndex])