Answers for "what is the method in javascript used to remove whitespace at the beginning and end the end of string"

5

javascript remove spaces at the beginning of the end of the string

const stringWithSpaces = '   I learn JS with Coderslang every day   ';

console.log(stringWithSpaces.trimStart());  //'I learn JS with Coderslang every day   '
console.log(stringWithSpaces.trimEnd());    //'   I learn JS with Coderslang every day'
console.log(stringWithSpaces.trim());       //'I learn JS with Coderslang every day'
Posted by: Guest on February-03-2021

Code answers related to "what is the method in javascript used to remove whitespace at the beginning and end the end of string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language