Languages
[Edit]
EN

JavaScript - remove last character from string

5 points
Created by:
Dexter
660

In JavaScript, it is possible to remove the last character from a string in the following ways.

1. Using String slice() method

// ONLINE-RUNNER:browser;

var text = 'abc';
var substring = text.slice(0, -1);

console.log(substring); // ab

2. Using String substring() method

// ONLINE-RUNNER:browser;

var text = 'abc';
var substring = text.substring(0, text.length - 1);

console.log(substring); // ab

3. Using String replace() method with regular expression

// ONLINE-RUNNER:browser;

var text = 'abc';
var substring = text.replace(/.$/, '');

console.log(substring); // ab

4. Using String replace() method

// ONLINE-RUNNER:browser;

var text = 'abc';
var substring = text.replace('c', '');

console.log(substring); // ab

Alternative titles

  1. JavaScript - how to chop off last char from string?
  2. How do I trim off last char in JavaScript?
  3. JavaScript - delete last character of string
  4. Slice off last character in js
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.

Cross technology - remove last character from string

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