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
The perfect solution for professionals who need to balance work, family, and career building.
More than 10 000 certificates already issued!
The HTML Certificate documents your knowledge of HTML.
The HTML5 Certificate documents your knowledge of advanced HTML5.
The CSS Certificate documents your knowledge of advanced CSS.
The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.
The jQuery Certificate documents your knowledge of jQuery.
The XML Certificate documents your knowledge of XML, XML DOM and XSLT.
The ASP Certificate documents your knowledge of ASP, SQL, and ADO.
The PHP Certificate documents your knowledge of PHP and SQL (MySQL).
Your message has been sent to W3Schools.