欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ES6新增字符串方法

程序员文章站 2023-12-21 16:41:58
...

字符串方法

includes 判断字符串中是否包含什么字符,返回布尔值

var str="abcdef";
console.log(str.includes("d"));// true
if(str.includes("d")){
    console.log("有d");
}

starsWith()、endsWith()

var str="abcdef";
// 判断字符a是否在最前面
console.log(str.starWith("a"));
// 判断字符a是否在最前面,从什么位置开始向后查找
console.log(str.startsWith("b",1));
// 判断字符ef是否在最后面
console.log(str.endsWith("ef"));
// 查找的字符最后一位
console.log(str.endsWith("de",5));

repeat重复字符串

var str="abcdef";
str=str.repeat(3);
console.log(str);
document.documentElement.style.backgroundColor="#"+"0".repeat(6);

// 判断是否长度为6的字符串,不足在前面补0
str.padStart(6,"0")
console.log("#"+Math.floor(Math.random()*0x1000000).toString(16).padStart(6,"0"));
// 判断是否长度为6的字符串,不足在后面补0
str.padEnd(6,"0");

字符串模板写法

var age=18;
var str="张三今年"+age+"岁了";
var str=`张三今年${age}岁了`
console.log(str);

console.log `你好`;

fill(值,从什么位置开始,到什么位置结束),必须数字有长度,而且填充会覆盖

var arr=[];
arr.length=10;
arr.fill(3);
console.log(arr);

var arr=new Array(5).fill(10);
var arr=Array(10).fill(10);
arr.fill(5,3,6);
console.log(arr);

flatMap扁平化数组

数组合并

var arr=[[1,2,3],[4,5,6],[7,8,9]];
var arr1=arr.flatMap(function(item){
    return item;
});
console.log(arr1);

上一篇:

下一篇: