How do I remove/chop/slice/trim off the last character in a string using Javascript?

David Y.

The Problem

How can I remove the last character from a string in JavaScript?

The Solution

Strings in JavaScript are immutable, so whenever we want to manipulate one, we must create a new string with our desired changes. Therefore, to remove the last character of a string, we must create a new string that excludes it. Two commonly used methods for this are slice and substring.

Using slice

slice allows us to extract a substring by specifying inclusive start and end indices within the original string. Negative numbers are used to count backwards from the end of the string rather than forwards from the start, so -1 will refer to the second-last character. Consider the following example:

let myString = "Hello world!"; myString = myString.slice(0, -1); console.log(myString); // will print "Hello world"

Using substring

The substring method is similar to slice but does not allow us to specify negative indices. Therefore, we must provide the positive index of the end position by subtracting 1 from the length of the string. Note also that the substring returned will stop just before the character at the index specified in the second argument, unlike slice, which includes the final character.

let myString = "Hello world!"; myString = myString.substring(0, myString.length - 1); console.log(myString); // will print "Hello world"

Comparison

The slice method is terser and its syntax will be familiar to Python programmers, but it may be initially confusing to programmers who have not previously encountered it. The substring method is more verbose but also more explicit.

Get Started With Sentry

Get actionable, code-level insights to resolve JavaScript performance bottlenecks and errors.

  1. Create a free Sentry account

  2. Create a JavaScript project and note your DSN

  3. Grab the Sentry JavaScript SDK

<script src="https://browser.sentry-cdn.com/7.112.2/bundle.min.js"></script>
  1. Configure your DSN
Sentry.init({ dsn: 'https://<key>@sentry.io/<project>' });

Loved by over 4 million developers and more than 90,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

Share on Twitter
Bookmark this page
Ask a questionJoin the discussion

Related Answers

A better experience for your users. An easier life for your developers.

    TwitterGitHubDribbbleLinkedinDiscord
© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.