JavaScript内置对象
-
String字符串对象
定义:
- var str = “hello,world”;
方法:- str.indexOf(“world”) 字符串中查找字符串
- str.match(“world”) 匹配内容
- str.replace(“world”,“test”) 替换内容
- str.toUpperCase()/str.toLowerCase() 转换大小写
- str.split(\”,\”) 字符串转换为数组
属性:str.length 字符串长度
-
Date日期对象
定义:
- var date = new Date();
方法:
- date.getFullYear() 获取年份
- date.getTime() 获取毫秒
- date.getHours() 获取小时
- date.getMinutes() 获取分钟
- date.getSeconds() 获取秒
- date.setFullYear(2020,1,1) 设置具体日期
- date.getDay() 获取星期
-
Array数组对象
数组的创建:
- var arr = [“hello”, “world”]
方法:
- arr.concat(another_arr) 合并数组
- arr.sort() 数组排序
- arr.push(“test”) 数组末尾追加元素
- arr.reverse() 数组翻转
-
Math对象
方法:
- Math.round(2.5) 四舍五入
- Math.random() 返回0~1之间的随机值
- Math.max(1,2,3,4)
- Math.min(1,2,3,4,5)
- Math.abs(-10) 绝对值