We can collect any part of the string by using slice function in JavaScript. Using this function we have to pass two parameters p1 and p2. Value of p1 indicates starting position of the sub string and value of p2 gives length of the sub string. The first position ( left side ) of the main string is known as 0 position of the string. Say for example we want sub string of length 10 characters from left side of the main string so here we have to use slice(0,10) . Here is an example of slice function collecting the first 7 characters of the string.
var my_str="Welcome to www.plus2net.com";
var my_slice=my_str.slice(0,7);
document.write(my_slice);
The above code will display Welcome. We can start the slice from by living last 7 characters of the string by using negative number as p2. Let us remove last 7 characters of the string by using negative number as -7. Here is the code.
var my_str="Welcome to www.plus2net.com"
var my_slice=my_str.slice(0,-7);
document.write(my_slice);
The output of the above code will be Welcome to www.plus2 , you can note that the last 7 characters of the main string is removed ( sliced ).