Languages
[Edit]
EN

JavaScript - remove last n characters from string

12 points
Created by:
Evania
584

In JavaScript it is possible to remove last n characters from string in following way.

1. Using String slice() method

// ONLINE-RUNNER:browser;

// common method to remove last n characters from string
function removeLastChars(text, n) {
    n *= -1;
    return text.slice(0, n);
}

console.log( removeLastChars('12345', 1) ); // 1234
console.log( removeLastChars('12345', 2) ); // 123
console.log( removeLastChars('12345', 3) ); // 12
console.log( removeLastChars('12345', 4) ); // 1

// below results are empty, that's why we compare them to ''
console.log( removeLastChars('12345', 0) === '' ); // true
console.log( removeLastChars('12345', 5) === '' ); // true

Note:
We can achieve the same results using:

  • String substring() method
  • String replace() method

Alternative titles

  1. JavaScript - remove last n characters from string - js util
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - String (popular problems)

JavaScript - remove last n characters from string - js util
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join