前端js判空处理,js字符串判空,js数组判空
1、字符串在 js 中,字符串为空会有这么几种形式,"",null,undefined,如果在已知变量为空串的情况下可以直接采用 if (string.length == 0) 这种形式,今天总结一下常用的几种方法,方便下次查阅。1.1、typeof | null | '' 「推荐????:兼容null、undefined 」functionisEmpty(obj){if(t...