javascriptエッセイ

161 ワード


 
 
//      
function trim(stringToTrim) {
      return stringToTrim.replace(/^\s+|\s+$/g, "");
}