The basic syntax for the slice is
array.slice(start, end)
The sample string is
var text = "welcome!";
Now, i am trying to remove last character from the above string using slice.
text = text.slice(',',-1);
Now the result is : welcome
Slice is also used for remove values from array, here is the example.
var fruits = ["Orange", "Strawberry", "Banana", "Orange", "Mango"]; var myBest = fruits.slice(-3, -1);
the result is
Orange,Lemon
You might also like:
File Upload Using Angular Js and Node Js28-05-2018 AngularJs Node js file upload multer module |
How to insert bulk information into database in single query execution18-03-2017 insert sql bulk database |
How to use http-post request in node js14-03-2017 http-post module node js |
Using slice remove last two characters from given string07-03-2017 slice remove |
How to set or update or push the values into Object in javacript27-02-2017 javascript set update push object |