javascript substring last character code example

Example 1: javascript substring last character

var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d

Example 2: javascript remove last character from string

var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell

Example 3: js get last 4 digits

const id = "ctl03_Tabs1";
console.log(id.slice(id.length - 5)); //Outputs: Tabs1
console.log(id.slice(id.length - 1)); //Outputs: 1

Example 4: javascript get last n characters of string

'abc'.slice(-1); // c

Example 5: javascript last character of string

var lastChar = myString[myString.length -1];

Tags:

Misc Example