摘要:
javascript中object的运算符操作使用 1:delete 使用: delete obj.x var obj = {x:1} obj.x//1 delete obj.x obj.x//undefined 2:defineProperty 使用: var obj = {}; Object.d 阅读全文
摘要:
javascript中类型检测的使用 1:typeof 使用: typeof xxx typeof 100 //"number" typeof NaN //"number" typeof "str"//"string" typeof true //"boolean" typeof function 阅读全文
摘要:
javascript中String的使用 String对象 String 对象用于处理文本(字符串)。字符串的长度不可更改,所有的方法不能修改 内容 String对象的创建 1:var str = new String("hello,world");//构造器 2:var str = "hello, 阅读全文