Open In App
Related Articles

JavaScript String slice() Method

Improve Article
Improve
Save Article
Save
Like Article
Like

The string.slice() is an inbuilt method in javascript that is used to return a part or slice of the given input string.

Syntax:

string.slice(startingIndex, endingIndex)

Parameters: This method uses two parameters. This method does not change the original string.

  • startingIndex: from which index, the extraction of the string should be started.
  • endingIndex: before which index, the extraction of the string should be included.

Return Values: It returns a part or a slice of the given input string.

Example 1: Here is the basic example of a string.slice() method.

javascript




let A = 'Geeks for Geeks';
b = A.slice(0, 5);
c = A.slice(6, 9);
d = A.slice(10);
 
console.log(b);
console.log(c);
console.log(d);


Output: 

Geeks
for
Geeks

Example 2:  Here is another example of the above-explained method.

javascript




let A = 'Ram is going to school';
 
// Calling of slice() Method
b = A.slice(0, 5);
 
// Here starting index is 1 given
// and ending index is not given to it so
// it takes to the end of the string 
c = A.slice(1);
 
// Here endingindex is -1 i.e, second last character
// of the given string.
d = A.slice(3, -1);
e = A.slice(6);
console.log(b);
console.log(c);
console.log(d);
console.log(e);


Output: 

Ram i
am is going to school
is going to schoo
going to school

Example 3: Here is an example of the slice() method.

javascript




let A = 'Geeks for Geeks';
 
// Calling of slice() Method
// Here starting index is -1 given
b = A.slice(-1, 5);
// Here endingindex is -1 i.e
c = A.slice(0, -1);
 
console.log(b);
console.log(c);


Output: 

Geeks for Geek

We have a complete list of Javascript string methods, to check those please go through this Javascript String Complete reference article.
 Supported Browser:

  • Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Internet Explorer 4 and above
  • Opera 4 and above
  • safari 1 and above

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 19 Jun, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials