자주 사용하는 함수 구현

trim 구현

String.prototype.trim = function () {
    return this.replace(/(^\s*)|(\s*$)/g, '');
}