摘要:
indexOf( ) 某字符的位置 push() 后面追加 pop() 从后面删除 a.sort() 排序 reverse()翻转 splice(start, deleteCount, value, ...) 插入、删除或替换数组的元素 万能方法 obj.splice(n,0,val) 指定位置插入 阅读全文
摘要:
操作字符串: length() 长度 totoLowerCase() 小写 toUpperCase() 大写 trim() 移除空白 charAt(n) 索引 也可以[ ] indexOf(substring,start) 子序列位置 substring(from, to) 切片 小的参数为第一个参 阅读全文
摘要:
数据类型: number 不分整数 和浮点数 字符串 用' ' " " 表示 布尔值 true false && 与运算符(都ture才ture) || 或运算符(一个ture就ture) ! 非运算符(单目运算 把ture 变为 false) 运算符 > < = >= <= == != ! !!! 阅读全文