摘要:
html: 练习1 Account Sign In Register Buyers Guide About Blog Co... 阅读全文
摘要:
1.转换成字符串多数的JavaScript宿主环境(比如Node.js和Chrome)都提供了全局函数toString; 与此同时Object.prototype也定义了toString方法,使得所有对象都拥有转换为字符串的能力。比如一个Number转换为String:var n = 1;n.toS... 阅读全文
摘要:
如果你要判断的是基本数据类型或JavaScript内置对象,使用toString; 如果要判断的时自定义类型,请使用instanceof。1.typeoftypeof操作符返回的是类型字符串,它的返回值有6种取值:typeof 3 // "number"typeof "abc" // "stri... 阅读全文