JavaScript-判断js的数据类型 一、typeof 二、instanceof 三、constructor 四、toString JavaScript-去空格 在这里插入代码片 function trim(str) { // /(^\s*)----去左边的空格 / (\s*$)----去右边的空格 return str.replace(/(^\s*)|(\s*$)/g, ""); }