# 实现 trim 方法

function myTrim(str) {
  const reg = /^\s*|\s*$/g;
  return str.replace(reg, '');
}
myTrim('    123  123    '); // 123  123