摘要:
JavaScript类型转换Number() 转换为数字, String() 转换为字符串, Boolean() 转化为布尔值。JavaScript 数据类型在 JavaScript 中有 5 中不同的数据类型:stringnumberbooleanobjectfunction3 种对象类型:Obj... 阅读全文
摘要:
typeof 操作符你可以使用 typeof 操作符来检测变量的数据类型。实例typeof"John"// 返回 stringtypeof3.14// 返回 numbertypeoffalse// 返回 booleantypeof[1,2,3,4]// 返回 objecttypeof{name:'J... 阅读全文
摘要:
字符串属性属性描述constructor返回创建字符串属性属性的函数length返回字符串的长度prototype允许您向对象添加属性和方法字符串方法Method描述charAt()返回指定索引位置的字符charCodeAt()返回指定索引位置字符的 Unicode 值concat()连接两个或多个... 阅读全文