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:
Check null values in JavaScript?04-02-2019 JavaScript null check null value |
How to make an http request in node js14-03-2017 http module node js |
Using slice remove last two characters from given string07-03-2017 slice remove |
Get previous date from given date in javascript06-03-2017 date javascript previous date |
Filter for change Date format (MM-dd-yyyy) in Angular Js05-03-2017 mm-dd-yyyy date formats angular js |