remove first char javascript

Solutions on MaxInterview for remove first char javascript by the best coders in the world

showing results for - "remove first char javascript"
Guadalupe
24 Mar 2016
1var string = "abcd";
2console.log(string.substring(3)); //"d"
Luce
03 Jul 2020
1let str = 'Hello';
2 
3str = str.substring(1);
4console.log(str);
5 
6/*
7    Output: ello
8*/
9
Cameron
28 Apr 2019
1// this will replace the first occurrence of "www." and return "testwww.com"
2"www.testwww.com".replace("www.", "");
3
4// this will slice the first four characters and return "testwww.com"
5"www.testwww.com".slice(4);
6
7// this will replace the www. only if it is at the beginning
8"www.testwww.com".replace(/^(www\.)/,"");
Giulia
13 Feb 2019
1// Return a word without the first character
2function newWord(str) {
3	return str.replace(str[0],"");
4	// or: return str.slice(1);
5	// or: return str.substring(1);
6}
7
8console.log(newWord("apple"));	// "pple"   
9console.log(newWord("cherry"));	// "herry"  
queries leading to this page
javascript string remove first 2 charjavascript remove first character from string js remove first chars from stringjavascript remove string after characterremove first letter of a string javascriptjs string remove first five charactersnodejs string remove char from frontremove string first character jsjavascript remove first index of stringremove first 3 characters in jsdelate char betwen index jsremove first character from string jsremove first element of string jshow to remove first two characters in string jsjs remove all chars plus first numberjs remove beginning of stringremove first element in string jsremove first 8 string in jshow to takeout the first letter from a word in jshow to remove first element if string in java scripthow to remove first in string value in javascriptjavascript string remove first childcut a char of a string jsremove first element of a string javascripthow to remove first element of string in jsjs string remove first charactercut off first five characters jsstring first character removejs drop first characterslice first char from strng in jsjavascript cut first 3 charactersjavascript string delete first characterjs delete character begin an a remove first 3 characters from string javascripttrim first 3 characters in javascriptjs how to remove the first two values of a stringsubstring javascript remove first characterjs remove two first string in stringstrip first x characters of js stringremove the first five characters of a tringhow to remove from letter from the end of a string javascripttrim the first two letters in node js stringjs remove charatersremove the first occurance of an element in a string javascriptcut 1 char from string jsremove characters in a string javascriptcut beginning of string javascriptjs remove characters from beginning of stringjavascript cut first char of stringremove on letter from end of string javascriptremove first character in string javascriptr regex remove all digits before characterjavascript remove first letter in string es6remove first two charater from string javascriptstring remove first two characters javascriptstrip the first 5 characters javascriptsearch and remove first character from string jsjavascript remove first occurence of stringjs strip first 3 chajavascript how to remove first character from stringjavascript remove from string frontremove first and last character from string javascriptjavascript remove leading stringjavascript trim end of stringremove first occurrence of char in string jshow to remove the first 2 characters of a string jsremove first char of string jsjavascript remove first char of stringjavascript remove characters from beginning of stringremove character from beginning of string javascripthow to remove the first letter of a string in javascriptdelete first character of string javascriptjavascript cut ammount of charicters of the start oif a stringremove first char of string javascriptremove from starting string javascriptremove first character from string javascript lodashremove first n characters from string javascripthow to remove first two letters from string javascriptcut off first 3 character javascript stringremove 3 characters from front of string jsjavascript remove first line from stringjavascript string remove leading characterhow to remove letter from a string in javascriptjavascritp remove first from stringjavascript delete first letter of stringhow to tring string first character in javascriptjavascript remove string starting with specific charactertrim first 20 char jsremove a string charactger in javascriptjavascript remove number in the beginning of stringhow to remove first character from string in javascriptremove first character from string in string array javascriptremove first 2 letters from string javascriptnodejs remove first letterjavascript remove element from stringremove 1 character string jshow to pop first letter of a string javascriptjs trim characters from leftfunction shift characters javascriptjavascript remove first letterstring remove first character javascriptjs remove first couple of letters from stringcut element from string jsremove start of string javascriptstring remove first 2 characters an last one char jsdelete the first 3 letters of a string in jsremove letter from string javascripthow to chop first letter of the stringjs remove all characters from stringremove first letter kjsremove only one special character from string javascript w3schoolsremove first 2 chars of string nodejshow to remove letters from a string in javascripthow to trim the string from first in javascripthow to remove first 4 char in jsjs remove first three character from stringhow to trim the first eight characters from a string in javascripthow to slice out first three character of string in jsremove characters from string jsjs string method to remove firstremove the first letter of a string javascriptremove the first element from a string javascriptremove first three characters javascriptremove first and last char jsjs strip first characterjavascript remove first three characters from stringremove any char jserase letters in string js nodejs remove first character from stringjavascript remove first chatacter from stringhow to remove start of string javascripthow to remove 6 characters at the start of a strink in nodejshow to remove the first 3 characters in typescriptnode remove heading substring form stringhow to remove first characters from string javascriptstring dlete charctr from string javascriptjavascript remove start of stringjavascript remove all characters except firstdrop letter from character javascriptremove first 3 characters in javascripthow to remove first three characters in javascriptremove first char nodejsremove first part of string javascripthow to remove te first charecter in a string in jsremove the first character froma string jsjs delete 4 char of stringjavascript remove first and last character from stringcut first number of character javascriptjs remove first charremove first x letter of string javascriptjs drop first charactershow to remove first 4 chars from string jshow to remove first letter of a string in javscriptjavascript delete first character in stringslice first two character of string jsremove the first letter from string in javascriptjs string remove charact from stringremove first two letter of a string in javascriptremove first 10 characters from string javascripttypescript remove starting char from stringjs remove the first character of a stringremove first character from string functionjavascript string remove first n charremove first 2 characters from string javascripthow to remove first letter in string javascriptjavascript delete character from stringjs function to remove first charactertype script get string with removing first charactorremove 3f from the beginning of a string javascripthow to remove first word from string in javascriptjavascript string remove leftdelete char from string at index jshow to remove the first character of a stringslice 1 character off a string javascriptpop first character of string javascriptjavascript remove string between two charactersremove all characters before first instance of a character jsremove all characters exept first from string javascriptjavascript string delete first two characterscutting out the first 10 letters in a sting javascripthow to remove first two characters from string in javascriptjavascript remove first 8 elemnts of stringstring remove first 2 characters and last one char jsremove char from string javascriptjavascript remove first four charactersdon 27t delete first character jsremove 2 first letters jsjs remove text from start of stringdelete first char from string jsjs string cut n first charremoving first character from string in jshow to remove first 2 characters from string in javascripthow to remove first string in javascriptdelete first element of string jsremove first 2 characters of string javascriptremove first chars of string jshow to remove character from string in node jssplit string by space and remove first character javascripttypescript remove first n character from stringjavascript remove first 2 character from stringremove first item from string javascriptremove first 2 char in jsjs remove first n chars from stringjava remove first 2 characters from stringhow to remove first digit in a number character javascriptjavascript remove first letter from stringjavascript regex remove first charactersremove the first character in a string javascriptjavascript remove first 3 letters from stringremoving one letter from the end of the string and attaching it to the front javascriptremovefirstchar jsremove first element of string javascriptjavascript string remove first child stringdelete first value in a string jsjs remove 1st caraterremoving the first 6 character of a string jsremove first 2 charater jshow to remove first two characters from string in jsjavascript remove first character from string ifremove elements in an array by first letterremove first 3 characters from string ksremove first element from stringjavascriptjs string strip characters after the firstremove first three letter of string jstake off first 4 characters on a string jvaremvoe first character substringjavascript remove text from beginning of stringjavascript trim characterremove 2 first digits javascriptjavascript take remove the first characterremove first 5 characters in jsremove first and last character from string jsjs string cut first elementjavascript remove charaqcterhow to remove first word of a string in jshow to remove first 4 characters from string in javascriptremove 2 first character of a string in jsjavascript only remove first characterremove first string in javascriptjavascript remove first 2 characters from stringremove a part of a string until metting a char jsremove two first char jscut first 3 letters from string with jstrim first 2 characters in javascriptremove first 4 characters from string javascriptremove first x characters javascriptremove 1st character string javascriptreplace all characters with another in javascripthow to cut 1st character jsjavascript drop first character of stringremove first x letters javascriptremove first letter vuejsremove first index from string javascriptjs remove start of string by stringremove first character in number javascripthow to delete first two and last two characters in a string 2c javascripthow to remove first character in a string typescriptcut first 3 charecters jstrim first character in javascriptremove a character and character 1 from a string javascripthow to remove first string words in javascriptjs string remove first n charactersjavascript string 5b 5d remove elements that start with remove at index javascriptcut off the first 4 letters of a string javascripttrim first 4 characters in javascripthow to remove a specific string in front of a string jsjavascript remove string first charactertake first 30 characters of string javascript and removejavascript code using to remove first item from stringremove five letters of the string javascri 3btremove first occurrence of character in string javascriptremove first two characters of stringremoving elemnts string jsremove first letter from string javascriptjavascript remove from first qoute in stringhow to remove only first string from a string javascripthow to remove first letter of a string javascriptremove first 2 letters from string in javaremove charachter from beginning javascriptjavascript remove first word from stringdelete all symbols at the beginning of a string jsjs delete first charremove first 2 charachters from a string javascriptjavascript remove first 3 characters of stringjs remove first 5 charnode js remove first character from stringhow to remove characters from end of string javascriptjavascript string remove characters from endjavascript remove first x characters from stringjs remove first char from stringhow to delete chars in strings jshow to remove first character in string javascripthow to remove first two characters in string javascriptjs remove first 3 characters from stringremove zero of first charahcte of string type scritpremove characther from string start jstrim 1st character in javascripjavascript remove first and last characterremove first 3 characters from stringhow to remove the first character of a string in javascriptignore characters at beginning of string jsjava remove first 3 characters from stringjs cut first letter from stringhow to remove first 3 characters of a word in jsjs remove first char from stirngremove characters from the end of a string javascriptjs cut the string to get firstnamehow to remove only first word from a string javascriptremove first occurrence of specific character from string jsremove first char from string typescripthow to remove first n chars in typescriptremove first and last character javascripti want to remove first 5 carector of string in javascriptjs remove string from string in beginningslice first letter from a string jsjavascript remove first char of a stringremove from start of string javascriptremove first and second character from string javascriptjavascript string remove first characterremove first sign form string jsjs remove first 3 charactershow to remove the first 4 characters from a js stringhow to trim first character in javascriptfilter using the first 7 characters javascriptremove letters from beginning of string javascriptjs remove first char in stringremove first char javascriptreplace first 3 characters in javascriptremove front string jsremove 3 characters from stringremove first letter of string jsignore first string javascriptcut first letter of string javascriptjs remove characters from end of stringjs remove first 4 characters from stringremove first 2 characters from string on jaavscripthow to delete first char javascriptremove first two chars of a string jshow to remove the first two letters of a string in javascriptjavascript remove first part of stringremove first letter from string jsremove first two characters from string nodejavascript preg remove first if specify charremove first character of a string in javascriptjavascript string remove first 3 charactersregex remove characters from beginning and end of string javascriptremove first 2 characters javascripthow to remove first letter from string in javascriptremove character from string jsignore first letter on stringjsjs remove 1 character from string javascripthow to remove a character in javascriptjs remove string before first instance of characterdelete the words that start with this letter javascriptjavascript remove first charremove first letter of string javascripthow to remove first item in string javasripthow to remove characters from string in jsremove 0 at first letter javascript javascript trim 1st 4 characters from stringjavascript strip stringjavascript remove first 3 characters from stringjavascript remove first three charactersremove first ocurrence of string javascriptdelete characters from the beginign of the string javascripthow to remove characters in jstrim specific character javascriptremove first 3char of string javascriptremove starting 4 characters from string javascriptignore first two char in jsremove first 5 characters in javascriptremove first digit from number javascriptcut the down first few char in string jsremove first character javacsriptjavascript remove starting charactersjavascript how to remove characters from a stringremove character from start of string jshow to remove first three characters from string in javascriptremove first word of string jshow to remove first char in string in jsjavascript remove first 0 from stringpop first n of string javascriptjavascript last two charactershow to remove first and last letters of a string javascriptjavascript array remove first characterjavascript remove newline character at ending of stringremove first three characters from string javascriptremove string from start and end jserase start of string javascriptstring remove 28 29 first 4 characters in javascriptjavascript trim characters from start of stringjs slice first characterremove first occurrence of a character from string jsjs string delete first characterstring remove first character jsjavascript remove part beginning stringremove specific characters within a string javascript 2c not including the first letterhow to remove characters from a string javascriptjavascript remove character from string at indexremove first 2 characters jsremove first 2 chars from string in nodejsremove all string starting from character javascriptremove letters from a string jshow to remove the first two letters of a string jsjs remove 1st characterstring cut first character javascriptjs remove a string from the beginning of stringhow to delete first characters in string 2c javascript 2c slicehow to delete the first characters in a string javascriptremove characters from string javascripthow to cut off the first characters of a string javascriptremove first 2 char of a string jshow to remove a character in a astring jsjs remove ferst chardremove 3 char in stringremove first element of a stringjavascriptremove charcters from end of sentence jsremove first 5 characters from string javascriptremove first two letters string javasctipyjavascript remove from start of stringjs remove from front stringjavascript string pop first charactorjavascript remove beginning and ending charactersremove the first character of a string jsnodejs trim first 3 charactersjavascript substring remove first characterjs remove first two charactersjavascript remove characters form start of stringremove first character from string nodejsjavascript strip start of stringremove end and start char in javascriptremove first two characters from string javascriptremove first 3 characters from string ndoejsdart remove first character from stringjavascript trim charactershow to remove the first character of a string javascriptremove first 2 characters in string javascriptremove first character if javascripthow to remove first 3 characters from a string in javascriptremove character from string start jsremove characters from end of string javascriptjavascript remove first character from string if have valueslice first character javascriptdelete a letter from a string javascriptremove the first 5 letters of a stringtrim word in javascriptremove characters from the beginning of a string javascriptjavascript remove from front of stringhow toremove first part of sentence javascriptremove first five characters string javaremove first two letters jsjs slice first charactersremove first indexletter in a stringjavascript how to take away the start of a stringjavascript remove characters from begininning of stringremove index 1 from string javascriptremove first two characters from string javascript using splitcut off first 4 characters of string javascripthow to remove the first part of a string in javascriptjavascript string 5b 5d remove elements that start withdelete in string first 3 symbols jsremove first 3 characters from list of string javaremove first character from string angularhow to remove first index of string in javascripthot to remove first two character from a string in javascriptremove first two characters from stringjavascript cut first letter from stringjs remove first characterhow to cut the first letter in string javascriptremove front stringjavascript trim characters from beginning of stringjava remove first n characters from stringjs trim to first letter in a stringjavascript remove a letter from a stringjavascript remove special first characters from stringjavascrtip remove first chareter from stringjavascript delete first character in a stringnode remove first character from stringremove first 5 letters from list in javascriptremove the first character in a string in jsjavascript remove first characters from stringword without first character in javascriptremove first character in text javascripthow to remove a letter from a string jsjs remove beginning stringremove first string jsremove first char strings jsremove ending characters of string jshow to remove the first character from a string in javascripthow to remove the first few characters from a string in javascriptcut first character from string javascriptjs remove first chararemove first and last char javascriptremove letters from string javascriptremove first character from string javascript in an arrayremove first 4 characters in javascriptdelete first character of word javascriptjavascript remove char from start of stringjavascript remove first part of a stringremove first 3 characters of string javascriptfilter first letter javascripthow to slice first n characters off string jsjavascript remove 2 first charactersstring remove startremove first occurence of string jsjs remove first two characters from stringhow to trim the first ten letters of a string javascriptremove first char from int jsremove the first char jsremove character from start of string javascriptjs remove string first charstrip get first string javascriptjs remove first char from strngremove first char from string javascripthow to remove character at first position of string using javascripthow to delete string js first lettersjavascript remove first characterremove 1st character from string javascriptnodejs string remove first 8 character and last 8remove first item in js stringremove first string item from word javascriptremove string from start of string javascriptremove first charcater from string javascriptremove first letter of each word in a string javascripthow to pop first value in strting jsts remove first character from stringtypescript remove first character from stringremove the first character from a string javascriptjs remove the x first charsremove first character of string javascriptjs delete first char from arrayjs string remove first charremove first string from strings jsjs remove first and last character from stringdelete first character javascriptjavascript remove first from stringjavascript string remove first and second characterremove first 5 characters from string jsjavascript remove first symbol from stringjs remove first few charactersremove first character from stringhow to remove the first letter of a string jsnode js remove first char from stringremove the first 3 characters in jsjavascript remove n characters from start of stringremove letter by letter in javsascriptremove first charachter fimr stringrremove certain beginning from stringjavascript take out first chardom remove first characters im premove first letter string javascripthow to remove first character in javascriptremove first two chars from stringhow to delete first three charactes javascriptdelete first 3 characters in javascriptjavascript delete first character of stringjquery remove first 3 characters of stringremove a first character in a number in javascripthow to remove first 2 characters in javascriptjavascript cut first 5 charactershow to remove first letter of a word in javascriptjavascript remove first and last charachterhow to remove first few characters from string in jsremove first char from stringslice first 5 characters javascriptremove the first 10 elements from string typescriptremove a value from start of the string jstrim first 4 chars from stringremove character from string javascriptjs delete first character of stringjavascript removing first char of stringjs delete first character from stringbest way to get rid of first letter of string javascripthow to cut firsst two characters in jshow to cut the first letter in node jsjavascript how to take the first 3 letters out of stringjavascript substr remove first 3 charactershow to remove first few characters from string in javascriptremove first character skripthow to remove 1st element of a string jsjs cut off first characterremove characters from a string javascripthow to remove the first character of a string in jsjavascript built in function for removing characters from a stringtypescript remove first signdrop the first letter of a string javascriptremove first letter of each word javascriptremove first character instring jsjs string remove first wordjavascript remove the first letter of stringtrim first 6 characters javascriptremove first word in string jsjs remove first 2 characters from a stringjavascript remove first letter in stringhow to remove first letter of string jsjavascript string remove characters from the endtrim first 2 letter in javascriothow to extract a string leaving first character in jsremoving first letter of string in jshow to remove first character of string in javascriptremove string from end javascriptget rid of first few character of string javascriptjavascript remove first character from numberjavascript slice first characterremove start of a string jsjs remove specific string in beginningjavascript remove front characters from stringjs remove first three letters from stringjavascript take first 2 characters of stringcut first letter in string jshow to remove first 3 characters from a string in jsjs remove first letter of stringjavascript remove character from beginning of stringhow to slice the first 3 letters off a stringjavascript splice first characterremove string at first index jsremove first character javascriptremove first letter of string js and save itcut first letters jsdelete first char substr jsjavascript remove from end charactersdelete first character in an arrayjavascript repalce exclude first two digitjavascript remove first char from stringshift string characters javascriptremove first four characters in string javascriptjavascript remove the first character of a stingremove first character using jshow to cut off one character of string jsjavascript remove first 3 charactersjavascript substring after characterhow to remove first and third character from string in javascriptremove first character from string javascriptremove characters from start of string javascriptremove first letter of string js and save it js vanilla javascript remove first 6 chars from stringjs remove words with character in frontjavascript trim first characterjavascript strip first 1000 characters ina stringjs strip characters from beginning of stringjavascript cut first 2 charactershow to remove first characters from string in regex javascripthow to remove first two characters in javascriptdelete first character in string javascriptjs string remove first x charactersnode remove first characters from stringremove first word from string javascriptslice entire string without first two letters javascriptjs remove first n characters from stringremove the beginning of a string javascriptremove first character string jshow to remove the first item of a string javascriptremove character from js string by indexremove first string character javascriptjs remove first characters from stringcut first n characters of string javascripthow to remove first element from string in javascriptjavascript remove first character from string javascript trim first charactersremove first 3 characters from a string using jqueryremove characters from strings jsdelete a character in a string jsremove first character in jsjs delete first 5 characters of stringjs remove first and last characterjs remove first symbol from stringhow to remove a character from a string javascremove first occurrence of character in string jsremove first chars from string start and end jsremove first 2 letters from string jsjavascript remove first letter of stringremove first element in string javascriptremove the first character of a string javascriptjavascript remove first character from the stringjs remove first 4 head string charactersstring remove first and last character javascriptjs string delete first charactershow to remove first and last character of a string in javascriptjs remove first character from stringtrim first 3 letter fomr a string jstrim 5 first characters javascriptjavascript remove first 2 chars from stringjs remove characters from endjavascript delete till first occurrencestring remove from start in javascripthow to trim characters in a string in jsremove first char in string typescriptremove string for character javascripthow to remove out the first few characters in a string in javascriptremove first two letter jsjavascript get first 2 characters of stringjavascript remove first n characters from stringjavascript trim specific character from end of stringjavascript strip first two charactersget the string till dot phpjs remove chars from end and start of stringhow to remove the first character in a string javascriptremove from string first 7 chars jshow to cut first 3 letter s in jshow to remove first character from string javascriptremove first two characters from number javascriptslice first 2 characters javascripttake off first 3 characters in string javascriptsubstring remove first character jsjs remove first and last specify characterhow to remove first two character from a variable in javascriptjs delete character beginhow to remove a string first four character in jsdelete first char of string javascripthow to remove first digit from a number in javascriptremove first char sctring javascriptremove first chars from string hsjs remove start of stringjavascript remove first few characters from stringremove characters strings in object javascriptjavascript string remove first n charactersremove first 4 characters from string jsremove first occurrence of char in string jsjavascript string cut first two charactersremove 40 from the begining of a string jsjavascript string remove 1st characterhow to delete starting of a string in javascriptremove first character js stringjs remove first character of stringremove first char of arrayjavascript slice first 4 charactershow to remove one letter from a string javascriptjavascript delete string from beginninghow to delete first n character in string jspop starting character in javascripthow to remove specific characters in string javascriptremove first element from string javascripthow to pop off the first char of an array jsremove first four characters string javascriptjavascript remove characters from stringjs delete first numberremove from beginning of string javascriptremove first index of string javascriptremove first character from string dartremove from start string in jsjavascript string remove first 2 charsjs remove characters from start of stringremove first two values of string jsremove characters from beginning of string javascripthow to remove the first digit of an string in reactcut first of string jsjavascript remove first 2 charactesjavascript remove first character from stringremove first char from string jstrim first character in jstrim characters in jsjavascript splice from start to character characterhow to delete first element from a string in javascriptcut the first 6 letters string in jshow to remove the first two element of a string in javascriptjs string leave first 10 charactershow to remove first 3 characters in string jsremove first letter of string typescriptremove first char in jsremove first two characters in string javascriptremove the first character from string javascriptjs remove first caractertrim first letter from string javascriptjavascript remove character from stringremove first character of string jshow to remove the first character from a string in node jsjs string remove first occurrencediscard first part of string javascirptget rid of first character in string javascriptremove first characterhow to remove 26 from string end using javascriptremove first tag from a string javascripttrim first 4 chars from string javaremove first characters of string jsjs remove first 7 charactersjs remove first 2 charactersremove the first word in a string javascripjs delet first char of stringjavascript drop ferst letter of stringjavascript remove first letters from stringreplace removes first caracter jsjs remove characters from start of arrayhow to remove first two character from string in javascriptremove characters string javascriptremove the first letter from string jstrim the first 2 character jsjavascript split remove first characterhow to remove the first 3 letters of a stringremove first character string javascripthow to remove first character from a string in javascripthow to delete symbol from the left string jsremove first 7 characters in string jsremove first character from string javscriptremove text from string from a character javascriptjs remove first char of stringjs remove characters at characterjavascript remove matching string from beginning of stringhow to get rid of the first character of a string jsremoving first characer of string in jsremove character from front of string javascriptjs remove first 2 characters of stringremove first character of a string javascriptstrip text of a character jsremove first 3 chars of string jsremove first character when is specific char javascriptremove beginning of string javascripthow to remove specific characters from string from start and end in javascripthow to remove the first two characters of a string in javascripthow to remove first two characters using javascriptjavascript remove first specific character from stringcut first 3 characters jsremove first 3 character from string in javascripthow to remove the first char in jshow to remove first letter in a word in javascriptstring cut first few characters jsdelete element from string javascriptremove first two character from string javascriptjavascript remove character from beginning of any stringjavascript remove first 4 characters from stringremove first 3 letters javascriptremove first two characters in javascriptjavascript remove first two characters from stringremove the first 2 word from string javascriptjavascript trim first 3 charactersremove quotes from end of string jsremove the first five characters in a string jsjs trim first left characterjavascript remove first substringremove first 3 characters javascriptskript remove first character from stringremove front of string javascripttypescript trim the first characterhow to delete a character from a string in javascriptjs remove from start of stringdelete first letter of string javascripthow to remove the first character of string in jshow to remove start string in string javascriptremove first two letters from string javascriptremove first n characters from string javajavascript delete first 2 charactersjavascript remove element that start with a letterdelete first letter of an elementremove first char javascript