remove first character string js code example

Example 1: javascript remove first character from string

var newStr = str.substring(1);

Example 2: remove first char javascript

let str = 'Hello';
 
str = str.substring(1);
console.log(str);
 
/*
    Output: ello
*/

Example 3: how to remove first character from string in javascript

str = str.substring(1);

Example 4: javascript remove first character from string

let str = 's';

str = (function f(s) { // don't use on large strings
  		return s.length<=1?'':f(s.slice(0, -1))+s[s.length-1]
	})(str); // ""

Tags:

Java Example