Answers for "how to read the last element of a string in js"

3

how to get last string in javascript

'abc'.slice(-2);
Posted by: Guest on June-14-2020
4

get last char javascript

var lastChar = myString[myString.length -1];
Posted by: Guest on May-28-2020

Code answers related to "how to read the last element of a string in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language