Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to remove whitespace only from first position of string js

function ltrim(str) {
  if(!str) return str;
  return str.replace(/^s+/g, '');
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #whitespace #position #string #js
ADD COMMENT
Topic
Name
6+1 =