字符串的解构赋值
const[q,w,e,r,d,f] = "abcdef";
如上,就是字符串的解构赋值,因为字符串被解构成为一个类似数组的对象。
变量的解构赋值
(1)交换变量的值
let x = 1;
let y = 2;
[x,y] = [y,x];
console.log(y); //x = 2,y = 1;
(2)从函数返回多个值
/ 返回一个数组
function example() {
return [1, 2, 3];
}
let [a, b, c] = example();
console.table([a,b,c]);
(3)函数参数的定义
// 参数是一组有次序的值
function f([x, y, z]) { ... }
f([1, 2, 3]);
// 参数是一组无次序的值
function f({x, y, z}) { ... }
f({z: 3, y: 2, x: 1});
(4)提取JSON数据
let jsonData = {
id: 42,
status: "OK",
data: [867, 5309]
};
let { id, status, data: number } = jsonData;
console.log(id, status, number);
// 42, "OK", [867, 5309]
(5)函数参数的默认值
jQuery.ajax = function (url, {
async = true,
beforeSend = function () {},
cache = true,
complete = function () {},
crossDomain = false,
global = true,
// ... more config
}) {
// ... do stuff
};
(6)遍历Map结构
var map = new Map();
map.set('first', 'hello');
map.set('second', 'world');
for (let [key, value] of map) {
console.log(key + " is " + value);
}
// first is hello
// second is world
(7)输入模块的指定方法
const { SourceMapConsumer, SourceNode } = require("source-map");
字符串的扩展
codePointAt()方法是用来测试一个字符串是两个字节还是四个字节组成的最简单的方法。
function is32Bit(c) {
return c.codePointAt(0) > 0xFFFF;
}
is32Bit("") // true
is32Bit("a") // false
字符串的遍历器接口
for(let codePointAt of 'hicai'){
console.log(codePointAt);
}