🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to JavaScript Notes
Topic #31

JS String Methods

Basic String Methods

Javascript strings are primitive and immutable: All string methods produce a new string without altering the original string.

Col 1 Col 2
String length String charAt() String charCodeAt() String codePointAt() String concat() String at() String [ ] String slice() String substring() String substr() String toUpperCase() String toLowerCase() String isWellFormed() String toWellFormed() String trim() String trimStart() String trimEnd() String padStart() String padEnd() String repeat() String replace() String replaceAll() String split()

Note: See Also: String Tutorial String Search String Templates String Reference

JavaScript String Length

The length property returns the length of a string:

Example

let text = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

let length = text.length;

Extracting String Characters

There are 4 methods for extracting string characters:

  • The at(position) Method
  • The charAt(position) Method
  • The charCodeAt(position) Method
  • Using property access [] like in arrays

JavaScript String charAt()

The charAt() method returns the character at a specified index (position) in a string:

Example

let text = "HELLO WORLD";

let char = text.charAt(0);

JavaScript String charCodeAt()

The charCodeAt() method returns the code of the character at a specified index in a string:

The method returns a UTF-16 code (an integer between 0 and 65535).

Example

let text = "HELLO WORLD";

let char = text.charCodeAt(0);

JavaScript codePointAt()

Examples

let text = "HELLO WORLD";

let code = text.codePointAt(0);

JavaScript String at()

ES2022 introduced the string method at():

The at() method returns the character at a specified index (position) in a string.

The at() method is supported in all modern browsers since March 2022:

Examples

const name = "W3Schools";

let letter = name.at(2);

Note: The at() method is a new addition to JavaScript. It allows the use of negative indexes while charAt() do not.

Examples

const name = "W3Schools";

let letter = name.at(-5);

Browser Support

at() is an ECMAScript 2022 feature.

JavaScript 2022 is supported in all modern browsers since March 2022:


Property Access [ ]

Example

let text = "HELLO WORLD";

let char = text[0];

Note: Property access might be a little unpredictable: It makes strings look like arrays (but they are not) If no character is found, [ ] returns undefined, while charAt() returns an empty string. Propert access is read only, but str[0] = "A" gives no error in "sloppy mode".

Example (Sloppy Mode)

let text = "HELLO WORLD";

// Try to change the first letter to "A"

try {

  text[0] = "A";

} catch(err) {

  text = err.message

}

Example (Strict Mode)

"using strict";

let text = "HELLO WORLD";

// Try to change the first letter to "A"

try {

 text[0] = "A";

} catch(err) {

 text = err.message

}

JavaScript String concat()

concat() joins two or more strings:

Example

let text1 = "Hello";

let text2 = "World";

let text3 = text1.concat(" ", text2);

The concat() method can be used instead of the plus operator. These two lines do the same:

Example

text = "Hello" + " " + "World!";

text = "Hello".concat(" ", "World!");

Note: All string methods return a new string. They don't modify the original string. Formally said:Strings are immutable: Strings cannot be changed, only replaced.


Extracting String Parts

There are 3 methods for extracting a part of a string:

  • slice(start, end)
  • substring(start, end)
  • substr(start, length)

JavaScript String slice()

slice() extracts a part of a string and returns the extracted part in a new string.

The method takes 2 parameters: start position, and end position (end not included).

Example

let text = "Apple, Banana, Kiwi";

let part = text.slice(7, 13);

Note: JavaScript counts positions from zero. First position is 0. Second position is 1.

Examples

let text = "Apple, Banana, Kiwi";

let part = text.slice(7);

JavaScript String substring()

substring() is similar to slice().

The difference is that start and end values less than 0 are treated as 0 in substring().

Example

let str = "Apple, Banana, Kiwi";

let part = str.substring(7, 13);

If you omit the second parameter, substring() will slice out the rest of the string.


JavaScript String substr()

substr() is similar to slice().

The difference is that the second parameter specifies the length of the extracted part.

Warning: The substr() method is deprecated in the latest JavaScript standard, but is still officially defined in Annex B of the ECMAScript specification for backward compatibility. You are strongly advised to use substring() or slice() instead.

Example

let str = "Apple, Banana, Kiwi";

let part = str.substr(7, 6);

If you omit the second parameter, substr() will slice out the rest of the string.

Example

let str = "Apple, Banana, Kiwi";

let part = str.substr(7);

If the first parameter is negative, the position counts from the end of the string.

Example

let str = "Apple, Banana, Kiwi";

let part = str.substr(-4);

Converting to Upper and Lower Case

A string is converted to upper case with toUpperCase():

A string is converted to lower case with toLowerCase():


JavaScript String toUpperCase()

Example

let text1 = "Hello World!";

let text2 = text1.toUpperCase();

JavaScript String toLowerCase()

Example

let text1 = "Hello World!";       // String

let text2 = text1.toLowerCase();  // text2 is text1
converted to lower

JavaScript String isWellFormed()

The isWellFormed() method returns true if a string is well formed.

Otherwise it returns false.

A string is not well formed if it contains lone surrogates.

Examples

let text = "Hello world!";

let result = text.isWellFormed();

Note: Lone Surrogates A lone surrogate is a Unicode surrogate code point that is not part of a valid surrogate pair used to represent characters in UTF-16 encoding.


JavaScript String toWellFormed()

The String method toWellFormed() returns a new string where all "lone surrogates" are replaced with the Unicode replacement character (U+FFFD).

Examples

let text = "Hello World \uD800";

let result = text.toWellFormed();

JavaScript String trim()

The trim() method removes whitespace from both sides of a string:

Example

let text1 = "      Hello World!      ";

let text2 = text1.trim();

JavaScript String trimStart()

ECMAScript 2019 added the String method trimStart() to JavaScript.

The trimStart() method works like trim(), but removes whitespace only from the start of a string.

Example

let text1 = "     Hello World!     ";

let text2 = text1.trimStart();

Browser Support

trimStart() is an ECMAScript 2019 feature.

ES2019 is supported in all modern browsers since January 2020:


JavaScript String trimEnd()

ECMAScript 2019 added the string method trimEnd() to JavaScript.

The trimEnd() method works like trim(), but removes whitespace only from the end of a string.

Example

let text1 = "     Hello World!     ";

let text2 = text1.trimEnd();

Browser Support

trimEnd() is an ECMAScript 2019 feature.

ES2019 is supported in all modern browsers since January 2020:


JavaScript String Padding

ECMAScript 2017 added two new string methods to JavaScript: padStart() and padEnd() to support padding at the beginning and at the end of a string.


JavaScript String padStart()

The padStart() method pads a string from the start.

It pads a string with another string (multiple times) until it reaches a given length.

Examples

let text = "5";

let padded = text.padStart(4,"0");

Note: The padStart() method is a string method. To pad a number, convert the number to a string first. See the example below.

Example

let numb = 5;

let text = numb.toString();

let padded = text.padStart(4,"0");

JavaScript String padEnd()

The padEnd() method pads a string from the end.

It pads a string with another string (multiple times) until it reaches a given length.

Examples

let text = "5";

let padded = text.padEnd(4,"0");

Note: The padEnd() method is a string method. To pad a number, convert the number to a string first. See the example below.

Example

let numb = 5;

let text = numb.toString();

let padded = text.padEnd(4,"0");

JavaScript String repeat()

The repeat() method returns a string with a number of copies of a string.

The repeat() method returns a new string.

The repeat() method does not change the original string.

Examples

let text = "Hello world!";

let result = text.repeat(2);

Syntax

string.repeat(count)

Parameters

Col 1 Col 2
Parameter Description
count Required. The number of copies wanted.

Return Value

Col 1 Col 2
Type Description
String A new string containing the copies.

Replacing String Content

The replace() method replaces a specified value with another value in a string:

Example

let text = "Please visit Microsoft!";

let newText = text.replace("Microsoft", "W3Schools");

Note: The replace() method does not change the string it is called on. The replace() method returns a new string. The replace() method replaces only the first match If you want to replace all matches, use a regular expression with the /g flag set. See examples below.

By default, the replace() method replaces only the first match:

Example

let text = "Please visit Microsoft and Microsoft!";

let newText = text.replace("Microsoft", "W3Schools");

By default, the replace() method is case sensitive. Writing MICROSOFT (with upper-case) will not work:

Example

let text = "Please visit Microsoft!";

let newText = text.replace("MICROSOFT", "W3Schools");

To replace case insensitive, use a regular expression with an /i flag (insensitive):

Example

let text = "Please visit Microsoft!";

let newText = text.replace(/MICROSOFT/i, "W3Schools");

Note: Regular expressions are written without quotes.

To replace all matches, use a regular expression with a /g flag (global match):

Example

let text = "Please visit Microsoft and Microsoft!";

let newText = text.replace(/Microsoft/g, "W3Schools");

Note: You will learn a lot more about regular expressions in the chapter JavaScript Regular Expressions.


JavaScript String ReplaceAll()

In 2021, JavaScript introduced the string method replaceAll():

Example

text = text.replaceAll("Cats","Dogs");

text = text.replaceAll("cats","dogs");

The replaceAll() method allows you to specify a regular expression instead of a string to be replaced.

If the parameter is a regular expression, the global flag (g) must be set, otherwise a TypeError is thrown.

Example

text = text.replaceAll(/Cats/g,"Dogs");

text = text.replaceAll(/cats/g,"dogs");

Note: replaceAll() is an ES2021 feature. replaceAll() does not work in Internet Explorer.


Converting a String to an Array

Note: If you want to work with a string as an array, you can convert it to an array.

JavaScript String split()

A string can be converted to an array with the split() method:

Syntax

text.split("")     // Split on characters

text.split(",")    // Split on commas

text.split(" ")    // Split on spaces

text.split("|")    // Split on pipe

Examples

let text = "Hi fox!";

const myArr = text.split("");

Using split("") Can be Unsafe

Using split("") is unsafe for strings containing emojis or complex characters.

The method splits by UTF-16 code units and will break surrogate pairs.

split("") is always unsafe for emojis. It will slice right through them and create broken, corrupt code fragments.

split(" ") is usually safe for words, even if they have emojis inside them, as long as the emoji is not glued right next to a space you are splitting on.

Summary of Options:

  • text.split("") is most unsafe It breaks up 4-byte emojis (like 💩 becomes ['\uD83D', '\uDCA9']).
  • Spread [...text] is partially safe: It works for simple emojis like 💩 or 🔥, but destroys complex emojis like 👨‍👩‍👧‍👦, 🧑‍⚕️ (doctor), or flags.
  • Intl.Segmenter is 100% Safe: It handles every emoji, accent, and complex characters.

Examples

let text = "👨‍👩‍👧‍👦";

const myArr = text.split("");

Note: Complete JavaScript Reference For a complete reference to all JavaScript properties and methods, with full descriptions and many examples, go to: W3Schools' Full JavaScript Reference. The reference inludes all JavaScript updates from 1999 to 2025.

Want to go beyond the notes?

Join CodingNow 2.0's JavaScript course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

JS String Methods – FAQs

Quick answers about learning JS String Methods in JavaScript.

This free note from CodingNow 2.0 explains JS String Methods in JavaScript — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every JavaScript topic on CodingNow 2.0, including JS String Methods, is 100% free with no signup required.
With focused practice, most students grasp JS String Methods in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now