数组处理
1. 复制数组
// 使用扩展运算符 ...
const itemsCopy = [...items];
2. 添加元素
someStack.push('newData');
3. 把类数组对象转换成数组
const foo = document.querySelectorAll('.foo');
const nodes = Array.from(foo);
1. 复制数组
// 使用扩展运算符 ...
const itemsCopy = [...items];
2. 添加元素
someStack.push('newData');
3. 把类数组对象转换成数组
const foo = document.querySelectorAll('.foo');
const nodes = Array.from(foo);