delete first character javascript
let str = 'Hello';
str = str.slice(1);
console.log(str);
/*
Output: ello
*/
let str = 'Hello';
str = str.substring(1);
console.log(str);
/*
Output: ello
*/
// First find the substring of the string to replace, then replace the first occurrence of that string with the empty string.
S = S.replace(S.substring(bindex, eindex), "");
//Another way is to convert the string to an array, splice out the unwanted part and convert to string again.
var result = S.split("");
result.splice(bindex, eindex - bindex);
S = result.join("");
Also in JavaScript:
- jquery function
- javascript storage get set item
- how to give roles discord.js
- jQuery create div element
- print code in js stackoverflow
- sort array javascript
- javascript boolean
- remove backslash in json array javascript
- local storage javascript
- setAttribute()
- how to send mail node.js
- how to send get request to external server using node
- javascript does object have property
- using multiple http verbs on express path request
- how to return a string x amount in javascript without using . repeat
- ip my adress
- hot to start cypress
- how to draw a triangle using javascript
- sort by string react
- javascript get dictionary values
- get length of array
- multi language website angular 6
- what is jquery
- angular scroll to element horizontally