Extract parts of a string:
The result of n will be:
The slice() method extract parts of a string and returns the extracted parts in a new string.
Use the start and end parameters to specify the part of the string you want to extract.
The first character has the position 0, the second has position 1, and so on.
Tip: Use a negative number to select from the end of the string.
![]()
The slice() method is supported in all major browsers.
| Parameter | Description |
|---|---|
| start | Required. The position where to begin the extraction. First character is at position 0 |
| end | Optional. The position (up to, but not including) where to end the extraction, If omitted, slice() selects all characters from the start-position to the end of the string |
| Type | Description |
|---|---|
| String | The extracted part of the string |
| JavaScript Version: | 1.0 |
|---|
Extract the whole string:
The output of the code above will be:
Extract from position 3, and to the end:
The output of the code above will be:
Extract the characters from position 3 to 8:
The output of the code above will be:
Extract only the first character:
The output of the code above will be:
Extract only the last character:
The output of the code above will be:
JavaScript String Object
Your message has been sent to W3Schools.