Get the last N characters of a String in JavaScript

avatar
Borislav Hadzhiev

4 min

banner

# Get the last N characters of a String

Pass -N as an argument to the slice() method to get the last N characters of a string.

For example, str.slice(-2) returns the last 2 characters of the string.

index.js
const str = 'bobbyhadz.com'; // โœ… get the last 2 characters of a string const last2 = str.slice(-2); console.log(last2); // ๐Ÿ‘‰๏ธ om // โœ… get the last 3 characters of a string const last3 = str.slice(-3); console.log(last3); // ๐Ÿ‘‰๏ธ com // โœ… get the last 4 characters of a string const last4 = str.slice(-4); console.log(last4); // ๐Ÿ‘‰ .com

The String.slice method extracts a section of a string and returns it, without modifying the original string.

The String.slice() method takes the following arguments:

NameDescription
start indexThe index of the first character to include in the returned substring
end indexThe index of the first character to exclude from the returned substring

When only a single argument is passed to the String.slice() method, the slice goes to the end of the string.

Make sure to assign the result of calling the slice() method to a variable as the method doesn't change the original string.

The String.slice() method can be passed negative indexes to count backward.

index.js
const str = 'bobbyhadz.com'; console.log(str.slice(-2)); // ๐Ÿ‘‰๏ธ om console.log(str.slice(-5)); // ๐Ÿ‘‰๏ธ z.com
Passing a negative start index to the slice method is the same as specifying a start index of string.length - N.
index.js
const str = 'bobbyhadz.com'; const last3 = str.slice(-3); // ๐Ÿ‘‰๏ธ com console.log(last3); const last3Again = str.slice(str.length - 3); console.log(last3Again); // ๐Ÿ‘‰๏ธ com

In both examples, we tell the slice method to copy the last 3 characters of the string into a new string.

If we try to get more characters than the string contains, slice() returns the entire string and doesn't throw an error.
index.js
const str = 'bobbyhadz.com'; const last100 = str.slice(-100); console.log(last100); // ๐Ÿ‘‰๏ธ bobbyhadz.com

In this example, we tried to get the last 100 characters of a string that only contains 13 characters.

As a result, the slice method returned a copy of the entire string.

If you have to do this often, define a reusable function.

index.js
function getLastNchars(str, n) { return str.slice(-n); } const str = 'bobbyhadz.com'; // โœ… get the last 2 characters of a string console.log(getLastNchars(str, 2)); // ๐Ÿ‘‰๏ธ om // โœ… get the last 3 characters of a string console.log(getLastNchars(str, 3)); // ๐Ÿ‘‰๏ธ com // โœ… get the last 4 characters of a string console.log(getLastNchars(str, 4)); // ๐Ÿ‘‰๏ธ .com

The getLastNchars function takes a string and N as parameters and returns the last N characters of the string.

# Get the last N characters of a string using String.substring

Alternatively, you can use the String.substring() method.

For example, str.substring(str.length - 3) returns the last 3 characters of the string.

index.js
function getLastNchars(str, n) { return str.substring(str.length - n); } const str = 'bobbyhadz.com'; // โœ… get the last 2 characters of a string console.log(getLastNchars(str, 2)); // ๐Ÿ‘‰๏ธ om // โœ… get the last 3 characters of a string console.log(getLastNchars(str, 3)); // ๐Ÿ‘‰๏ธ com // โœ… get the last 4 characters of a string console.log(getLastNchars(str, 4)); // ๐Ÿ‘‰๏ธ .com

The String.substring() method returns a slice of the string from the start index to the excluding end index.

The method takes the following parameters:

NameDescription
start indexThe index of the first character to include in the returned substring
end indexThe index of the first character to exclude from the returned substring

If no end index is specified the slice goes to the end of the string.

The String.substring() method doesn't support negative values to count backward, so we had to calculate the start index based on the string's length.

index.js
const str = 'bobbyhadz.com'; // ๐Ÿ‘‡๏ธ om console.log(str.substring(str.length - 2));
The slice and substring methods are similar, however, you should use the slice method because its implementation is more intuitive.

There are a couple of differences between the String.substring() and the String.slice() methods:

  • The substring() method swaps its start and end index if the start index is greater than the end index. The slice() method returns an empty string in this case.
index.js
const str = 'bobby'; console.log(str.substring(3, 0)); // ๐Ÿ‘‰๏ธ bob console.log(str.slice(3, 0)); // ๐Ÿ‘‰๏ธ ''
  • If either of both arguments passed to substring() are negative, they are treated as if they were 0.
index.js
const str = 'bobby'; console.log(str.substring(-3)); // ๐Ÿ‘‰๏ธ bobby console.log(str.slice(-3)); // ๐Ÿ‘‰๏ธ bby

When given a negative index, the slice() method counts backward from the end of the string to find the indexes.

For these reasons, it is recommended to use the String.slice() method to get the last N characters of a string.

The slice method works in a more predictable manner.

# Additional Resources

You can learn more about the related topics by checking out the following tutorials:

I wrote a book in which I share everything I know about how to become a better, more efficient programmer.
book cover
You can use the search field on my Home Page to filter through all of my articles.

Copyright ยฉ 2023 Borislav Hadzhiev