JavaScript中的类型转换
原文英文,约200词,阅读约需1分钟。发表于: 。Converting to string String() It can take null and undefined as arguments without error. String(null); // 'null' String(undefined); // 'undefined' toString() It throws an error if the...
在字符串转换中,String()可以处理null和undefined,而toString()会抛出错误。Number()将参数转换为数字,无法解析时返回NaN。parseInt()和parseFloat()会读取数字,直到遇到无法解析的字符为止。