Answers for "find last index of character in string js"

30

javascript get last character in string

var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d
Posted by: Guest on August-01-2019
0

javascript find the last occurrence of a character in a string

let str = "Hello planet earth, you are a great planet.";
str.lastIndexOf("planet")   // Returns 36
str.lastIndexOf("Planet")   // Returns -1
Posted by: Guest on October-23-2021

Code answers related to "find last index of character in string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language