Get the 10 characters from a string using JavaScript.

Here, in this article we will learn how to get the first 10 character from any string using JavaScript. Here we will be using JavaScript’s String method substring.

What is substring() method in javascript?

The substring() method in javascript extracts characters between two parameters from a given string and then returns its substring.

The substring methods extracts the characters between the first param(start) and second param(last), but does not include the last.

Syntax:

string.substring(start, end)

Start : the first position from where the extraction begins. The first position is at index 0.

end : it up to (but not including) where the extraction ends.

Extract first 10 characters from a String using JavaScript substring()

To extract the first 10 character from a string, the syntax will be string.substring(0,10).

let str = "abcdefghijkl"
let tenChar = str.substring(0,10)
console.log(tenChar)

//abcdefghij  <- FIRST 10 CHARACTER FROM THE STRING

The extraction of the character starts with the position 0 (the position is index 0 ) and ends with 10 (the position is index 9).

Note:

  1. If the start position is greater then the end position, the substring() will swap the two arguments. Example (5,1) will be swap to (1,5).
  2. If the start or the end argument is less the 0, the will be treated as 0
  3. Thesubstring()method will not bring as changes to the original string.

Related Articles:

How to create Multiline string in JavaScript?

Generate random string/characters in JavaScript

How to Remove Last Character from a string in JavaScript

Check if String Is a Number or Not in JavaScript

JavaScript – How to Remove Character From A String.

How can I do String interpolation in JavaScript?

Compare Two Strings in JavaScript | String Comparison

Scroll to Top