数组,Math,String,Date对象常用方法

数组对象方法:

Array.isArray(val);  检测是不是数组  返回true就是数组,flase就不是数组

arr.forEach(function(ele,index,array){});//本质上是一个for循环(遍历数组的元素/下标/数组,三个值)

arr.indexOf(ele);//检测ele在数组arr中是否存在?(存在返回所在下标,不存在返回-1)(都可以传负数)

arr.lastIndexOf(ele);//从后往前找

var flag = arr.some逐个执行,只要有一个为true,整个结果就为true

arr.every(function (ele)逐个执行,只要有一个为false,整个结果就为false

arr.filter(function(ele,index,array){//过滤,返回布尔值,返回一个新的数组

arr.map(function(ele,index,array){//映射,返回一个新的数组

reslut = arr.reduce(function(prev,next){ 执行结果归并为一个值/对象/数组

String字符串对象方法:

var str1 = new String("jk&fal&sj");   // 字符串对象构造方式    少用

var str2 = "jk&fal&sj"          //字符串字面量构造方式     常用

alert(str1 == str2)//str1 == str2   但是 str1 !=== str2

console.log(str2.charAt(5))       //输出index下标对应的字符。没有返回空

alert(str2.charCodeAt(5))            //输出index下标对应字符的ASCLL码值   没有返回NAN

alert(String.fromCharCode("A"))             //输人ASCLL码值输出字符

console.log(str1.indexOf("j")); 

console.log(str1.indexOf("j",2));        //查询ele在字符串中是否存在,存在返回下标,不存在返回-1;

console.log(str1.lastIndexOf("s"))           //从后往前找;

console.log(str1.substr(0,4)); //length可省略,截取从start位置到指定长度的字符,如果长度不指定,截取到最后

console.log(str1.substr(3));

console.log(str1.substring(0));              //end可省略,截取从start位置到end位置的字符,但不包括end,如果end不指定,截取到最后

console.log(str2.split("&"));               //将字符转成数组

console.log(str2.replace("j","k"));        //返回替换后的新字符串,默认情况下只能替换一个,如果需要替换多个,需要使用正则

console.log(str2.toLowerCase());           //将字母大写改为小写,原字母小,就不变console.log(str2.toUpperCase(0));           //将字母小写改为大写,原字母小,就不变

Math对象方法:

Math.floor()向下取整

Math.ceil()向上取整

Math.round()四舍五入

Math.sqrt(m)开平方

Math.pow(m, n) m的n次方

Math.min(342, 32, 2) 2

Math.min.apply(null, [34, 1, 35]) 1 获取数组的最小值

Math.random()[0, 1) 之间的随机小数

Date对象方法:

console.log(date.getFullYear()) //获取年

console.log(date.getMonth() + 1)// 获取月份(月份从0 - 11,所以获取时 月份要 + 1)

console.log(date.getDate())// 获取日期

console.log(date.getDay())// 获取星期 0 - 6 0 == 星期日

console.log(date.getHours())// 获取小时

console.log(date.getMinutes())// 获取分钟

console.log(date.getSeconds())// 获取秒

console.log(date.toLocaleDateString())   //精确到日期

console.log(date.toLocaleString())  获得本地时间  精确到小时

返回毫秒数的三种方法:

console.log(date.getTime())

console.log(Date.now())

console.log(Date.parse(date))

定时器:

setInterval(要执行的任务,间隔时间)

clearInterval(t);停止t定时器

setTimeout (要执行的任务,延迟时间)   

你可能感兴趣的:(数组,Math,String,Date对象常用方法)