Remove last two characters from given string

substring
javascript
remove

If we want to remove last two characters from given string. There is an simple method in javascript, i.e substring.

var name = "hi hellow";
name.substring(0, name.length - 2);

the result is : hi hell

Note: The substring() method does not change the original string.

The actual substring syntx is 

string.substring(start, end)

 

You might also like:

How to search text in string using php ?

29-10-2017 php search string search

How to use http-post request in node js

14-03-2017 http-post module node js

Convert Time 24 hrs to 12 hrs format In javascript

12-03-2017 date javascript 12hrs convert

Get previous date from given date in javascript

06-03-2017 date javascript previous date

Get random strings from given string In javascript

21-02-2017 javascript random string