基本数据类型
1. 数字
a = 18 ;
2. 字符串
a = 'alex'
a.chartAt(索引位置)a.substring(起始位置, 借宿位置)a.length 获取当前字符串长度a.trim 去除空白a.concat(123) 拼接a.indexof(8) 获得子序列的位置a.lastIndexof(1)a.slice(start, end)a.toLowercase() 大写a.toUpperCase() 小写a.split('e')a.split('e', 1)3. 列表(数组)
a = [11, 22, 33]
a.lengtha.push 尾部追加元素a.pop() 去除尾部的最后一个元素a.unshift 头部插入数据a.shift 头部去除数据a.splice(1, 2, 333) 1表示位置, 2表示删除个数, 333 表示插入位置a.slice 切片a.reverse() 反转a.join('-') 将数组元素连接起来构建一个字符串a.concat() 连接数组a.sort() 进行排序4.字典
a = {'k1': 'v1', 'k2': 'v2'}