Using slice remove last two characters from given string

slice
remove

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:

Simple Array Sum | Javascript | hackerrank.com

07-05-2020 hackerrank.com javascript arrays array sum

How to upload file by using request module

18-03-2017 request module node js

How to use request module in node js

16-03-2017 request module node js

Get previous date from given date in javascript

06-03-2017 date javascript previous date

How to remove last / value from url in javascript

27-02-2017 array javascript last value