자바스크립트를 이용해 백앤드에서 넘어오는 문자열을 display하는데, 이 문자열에 불필요한 공백이 포함되는 경우가 있다.
따라서 최종 클라이언트에게 display되기 전 불필요한 공백을 제거할 필요가 있다.
string.trim();
var orig = "foo ";
var modif = orig.trim();
console.log(modif); // "foo"
console.log(orig); // "foo ";
string.replace(searchvalue, newvalue);
const p = 'the dog. dog barked, was it dog?';
console.log(p.replace('dog', 'monkey'));
// 'the monkey. dog barked, was it dog?'
const regex = /Dog/i;
console.log(p.replace(regex, 'ferret'));
// 'the monkey. monkey barked, was it monkey?'
str.replace(/^\s+|\s+$/g, '');