The basic function common to both methods is that they extract a string within a specified range and return it as a new string. It is common to specify two indices as arguments: the "start position" ...
A useful tool for handling strings in JavaScript is the slice method. In this article, I will explain the basic way to extract parts of a string in a way that is easy for beginners to understand.
The slice() method of {{jsxref("String")}} values extracts a section of this string and returns it as a new string, without modifying the original string.