JavaScript String slice()
Example
Extract parts of a string:
let str = "Hello world!";
str.slice(0, 5) // Returns "Hello"
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The slice() method extracts 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.
Browser Support
slice() is fully supported in all browsers:
| Chrome | IE | Edge | Firefox | Safari | Opera |
| Yes | Yes | Yes | Yes | Yes | Yes |
Syntax
string.slice(start, end)
Parameter Values
| 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 |
Technical Details
| Return Value: | A String, representing the extracted part of the string |
|---|---|
| JavaScript Version: | ECMAScript 1 |

