摘要:函数更好的尾递归优化实现传入类数组对象且每次的值在改变。尾递归实现改写一般的递归函数确保最后一步只调用自身。返回一个遍历器对象用循环遍历。和循环它是一种遍历器接口为各种不同的数据结构提供统一的访问机制。
解构赋值
</>复制代码
//数组的解构赋值
let [a, b, c] = [1, 2, 3];
a // 1
b // 2
c // 3
let [a, [[b], c]] = [1, [[2], 3]];
a // 1
b // 2
c // 3
let [a, , c] = [1, 2, 3];
a // 1
c // 3
let [a, ...b] = [1, 2, 3];
a // 1
b // [2, 3]
//默认值引用其他变量
let [x = 1, y = x] = []; // x = 1, y = 1
let [x = 1, y = x] = [2]; // x = 2, y = 2
let [x = 1, y = x] = [1, 2]; // x = 1, y = 2
let [x = y, y = 1] = []; // Error x用到默认值y时, y还没被声明。
//对象的解构赋值
let { foo: one, bar: two } = { foo: "aaa", bar: "bbb" };
one // "aaa"
two // "bbb"
foo // foo is not defined 对象的解构赋值是先找到同名属性, 然后再赋值给对应的变量
let { foo, bar } = { foo: "aaa", bar: "bbb" }; //简写
foo // "aaa"
bar // "bbb"
//指定默认值
let { x, y = 5 } = { x: 1 };
x // 1
y // 5
let { x: y = 3 } = { x: 5 };
y // 5
//字符串的解构赋值
const [a, b, c, d, e] = "hello";
a // "h"
b // "e"
c // "l"
d // "l"
e // "o"
let { length: len } = "hello";
len // 5
//函数参数的解构赋值
[[1, 2], [3, 4]].map(([a, b]) => a + b );
// [3, 7]
//函数参数指定默认值
function desc({ x = 0, y = 0} = {}) {
return [x, y];
}
desc({ x: 3, y: 8 }) // [3, 8]
desc({ x: 3 }) // [3, 0]
desc({}) // [0, 0]
desc() // [0, 0]
//undefined触发函数参数的默认值
[1, undefined, 3].map((x = "2") => x);
// [1, 2, 3]
/*--常见用途--*/
//交换变量
let x = 1, y = 2;
[x, y] = [y, x];
//函数返回多个值
function example() {
var obj = {
foo: [1, 2, 3],
bar: { d: 4, e: 5 }
}
return obj;
}
let { foo: [a, b, c], bar : { d, e } } = example();
//提取JSON数据
var json = {
result: "success",
info: {
id: 22,
name: "RetroAstro",
avatar: "cream.png",
detail: ["111", "222", "333"]
}
}
let { result, info: { id , name, avatar, detail: [a, b, c] } } = json;
//遍历Map接口
var map = new Map([
["first", "one"],
["second", "two"]
]);
for ( let [key, value] of map.entries() ) {
console.log(key, value);
}
模板字符串
</>复制代码
//常用实例
var obj = {
username: "RetroAstro",
avatar: "user.png",
info() {
var x = 1, y = 2;
return x + y;
}
}
var str =
`
${obj.username}
/g, ">");
str += template[i];
}
return str;
}
var user = "";
safeHTML`${user} has sent you a message.
`;
// " has sent you a message.
"
函数的扩展
</>复制代码
//函数参数默认值
var $ = {
ajax({
method = "GET",
url = "",
async = true,
headers = {},
encType = "",
data = "",
dataType = "json",
success = function() {},
error = function() {}
}) {
// start xhr ...
}
}
//箭头函数
var x = 5, y = 6;
var f = () => { return x + y };
//等价于
var f = () => x + y;
//等价于
var f = function() {
return x + y;
}
//rest参数和变量解构
var f = ({first, last}, ...values) => [first, values, last];
f({ first: "Retro", last: "Astro" }, 2, 3, 4, 5);
// ["Retro", [2, 3, 4, 5], "Astro"]
//箭头函数中的this指向
function foo() {
setTimeout(() => {
console.log(this.id);
}, 1000)
}
// 等价于
function foo() {
var that = this;
setTimeout(function() {
console.log(that.id);
}, 1000)
}
foo.call({id: "233"}); // 233
/*
@ 箭头函数里面根本没有自己的this, 而是引用外层的this。
@ 箭头函数里没有arguments, super, new.target 三个变量, 而指向外层函数对应的值。
*/
//尾调用优化
function fatorial(n) {
if ( n === 1 ) { return 1; }
return n * factorial(n-1); // 一般的递归, 保存多个调用记录, 非常消耗内存。
}
function factorial(n, total) {
if ( n === 1 ) { return total; }
return factorial(n-1, n * total); // 尾递归优化
}
//蹦床函数, 将递归执行转为循环执行。
function trampoline(f) {
while ( f && f instanceof Function ) {
f = f();
}
return f;
}
function sum(x, y) {
if (y > 0) {
return sum.bind(null, x+1, y-1);
} else {
return x;
}
}
trampoline(sum(1, 100000)); // 100001
//tco函数 —— 更好的尾递归优化实现
function tco(f) {
var value;
var active = false;
var accumulated = [];
return function accumulator() {
accumulated.push(arguments); // 传入类数组对象[x, y]且每次的值在改变。
if ( !active ) {
active = true;
while ( accumulated.length ) {
value = f.apply(this, accumulated.shift());
/*
调用外部函数, 此时while循环继续。
active为true, 但accumulated中参数变化。
当accumulated中的值为空时, x值value接收并返回。
*/
}
active = false;
return value;
}
}
}
var sum = tco(function(x, y) {
if ( y > 0 ) {
return sum(x+1, y-1); // 相当于再次执行accumulator函数, 且传入新的参数值。
} else {
return x;
}
})
sum(1, 100000) // 100001
/*
@ 尾递归实现 —— 改写一般的递归函数, 确保最后一步只调用自身。
--- 尾递归优化 ---
@ 实现意义 —— 防止栈溢出, 相对节省内存。(函数里面调用函数才叫递归执行, 产生前面的副作用)
@ 实现要点 —— 减少调用栈, 采用循环从而替换掉递归。
*/
数组的扩展
</>复制代码
//扩展运算符
...[1, 2, 3, 4, 5]
// 1 2 3 4 5
var nodeList = document.querySelectorAll("div");
[...nodeList];
// [, , ]
var arr1 = [1, 2, 3];
var arr2 = [4, 5, 6];
arr1.push(...arr2)
console.log(arr1) // [1, 2, 3, 4, 5, 6]
let map = new Map([
[1, "one"],
[2, "two"],
[3, "three"]
])
let arr = [...map.keys()]; // [1, 2, 3]
/*
--- 用途 ---
@ 将数组转为用逗号分隔的参数序列
@ 可以展开任何含有Iterator接口的对象, 从而将其转变为数组。
*/
// Array.from()
function foo() {
var args = Array.from(arguments);
// ...
}
let spans = document.querySelectorAll("span");
// ES5
let names1 = Array.prototype.map.call(spans, s => s.textContent);
// ES6
let names2 = Array.from(spans, s => s.textContent);
/*
--- 用途 ---
@ 将两类对象转为真正的数组。
@ 类似数组的对象 (array-like object)
@ 可遍历对象 (iterable)
*/
// Array.of() --- 将一组值转换为数组
Array.of(1, 2, 3, 4, 5) // [1, 2, 3, 4, 5]
// find() --- 找出数组中符合条件的第一个成员并返回该成员。
[1, 3, -8, 10].find( n => n < 0 ); // -8
// findIndex() --- 找出数组中符合条件的第一个成员并返回该成员的位置。
[1, 3, -8, 10].findIndex( n => n < 0 ); // 2
// keys() values() entries() --- 返回一个遍历器对象, 用for...of循环遍历。
var arr = ["a", "b"];
for ( let key of arr.keys() ) {
console.log(key);
}
// 0 1
for ( let value of arr[Symbol.iterator]() ) {
console.log(value); // Chrome, Firefox 未实现 arr.values()
}
// a b
for ( let [key, value] of arr.entries() ) {
console.log(key, value);
}
// 0 "a"
// 1 "b"
// includes() --- 表示某个数组是否包含特定的值, 返回一个布尔值。(第二个参数表示搜索的索引位置)
[1, 2, 3].includes(2, 1) // true
[1, 2, 3].includes(2, 2) // false
对象的扩展
</>复制代码
// Object.is() --- 比较两个数是否严格相等, 比 === 符号更好。
+0 === -0 // true
NaN === NaN // false
Object.is(+0, -0) // false
Object.is(NaN, NaN) // true
// Object.assign() --- 将源对象所有可枚举的属性复制到目标对象。
// 属于浅复制, 对于嵌套的对象只是复制对象的引用。
/* --- 常见用途 ---*/
// 为对象添加属性。
class Point {
constructor(x, y) {
Object.assign(this, {x, y});
}
}
//为对象添加方法
var foo = {};
Object.assign(foo.prototype, {
method1() {
//...
},
method2() {
//...
},
method3() {
//...
}
})
// 克隆对象, 保持继承链。(浅复制)
function clone(obj) {
var proto = Object.getPrototypeOf(obj);
return Object.assign(Object.create(proto), obj);
}
// Object.setPrototypeOf() Object.getPrototypeOf()
// 设置或获取原型对象。
let proto = {};
let obj = { x: 10 };
Object.setPrototypeOf(obj, proto);
proto.y = 20;
obj.y; // 20;
Object.getPrototypeOf(obj) === proto // true
// Object.keys() Object.values() Object.entries()
// 对可遍历的属性起作用, 且可以用for...of循环遍历。
let { keys, values, entries } = Object;
let obj = { a: 1, b: 2, c: 3 };
for ( let key of keys(obj) ) {
console.log(key); // a b c
}
for ( let value of values(obj) ) {
console.log(value); // 1 2 3
}
for ( let [key, value] of entries(obj) ) {
console.log([key, value]); // ["a", 1] ["b", 2] ["c", 3]
}
Set, Map数据结构
</>复制代码
// Set --- 成员值唯一的数据结构
// 数组去重
var arr = [1, 2, 3, 3, 4, 5, 5];
// 方法一
[...new Set(arr)]; // [1, 2, 3, 4, 5]
// 方法二
Array.from(new Set(arr)); // [1, 2, 3, 4, 5]
/*
@ 具有 add(), delete(), has(), clear() 方法。
@ 包含 keys(), values(), entries(), forEach() 遍历操作方法。
*/
// Map --- 属于键值对的数结构, 且与对象不同。各种类型的值都可以当作键。
// Map转数组
var arr = ["a", "b", "c"];
let map = new Map( arr.map((p, i) => [i, p]) );
[...map] // [[0, "a"], [1, "b"], [2, "c"]]
// Map转对象
function mapToObj(map) {
let obj = {};
for ( var [k, v] of map ) {
obj[k] = v;
}
return obj;
}
// 对象转Map
function objToMap(obj) {
let map = new Map();
for ( var k of Object.keys(obj) ) {
map.set(k, obj[k]);
}
return map;
}
/*
@ 具有 set(key, value), get(key), has(key), delete(key), clear() 方法。
@ 包含 keys(), values(), entries(), forEach() 等遍历方法。
*/
// WeakSet, WeakMap
// WeakSet 实例
class Foo {
constructor() {
foo.add(this);
}
method() {
if ( !foo.has(this) ) {
throw new TypeError("只能在Foo的实例上使用!");
}
}
}
// WeakMap 实例
let Element = document.querySelector(".logo");
let wm = new WeakMap();
wm.set(Element, { timesClicked: 0 });
Element.addEventListener("click", () => {
var logo = wm.get("Element");
logo.timesClicked++;
});
// 一旦DOM节点被删除, 点击一次更新的状态就会消失。
const listener = new WeakMap();
listener.set(element, handler);
element.addEventListener("click", listener.get(element), false);
// 一旦DOM对象消失, 其绑定的监听函数也会消失。
/*
--- 特点 ---
@ 其成员都只能是对象而且为弱引用, 即垃圾回收机制不考虑对该对象的引用。
@ 所引用的对象在外部被清除, 里面的键名对象和对应的键值对自动消失从而防止了内存泄漏。
*/
Iterator 和 for...of 循环
</>复制代码
/*
--- Iterator ---
@ 它是一种遍历器接口, 为各种不同的数据结构提供统一的访问机制。
--- 作用 ---
@ 使数据结构的成员能够按某种次序排序。
@ 部署了Iterator接口的数据结构可供for...of循环遍历。
*/
/*
--- 原生具备Iterator接口的数据结构 ---
@ Array
@ Map
@ Set
@ String
@ TypedArray
@ 函数的arguments对象
@ NodeList对象
*/
// 为对象添加Iterator接口
var obj = {
data: ["hello", "world"],
[Symbol.iterator]() {
const self = this;
let index = 0;
return {
next() {
if ( index < self.data.length ) {
return {
value: self.data[index++],
done: false
}
} else {
return {
value: undefined,
done: true
}
}
}
}
}
}
for ( var x of obj ) {
console.log(x);
}
// hello world
var itrable = obj[Symbol.iterator]();
iterable.next();
// {value: "hello", done: false}
iterable.next();
// {value: "world", done: false}
iterable.next();
// {value: "undefined", done: true}
/*
--- for...of ---
@ 用于遍历键值, 遍历数组时只返回具有数字索引的属性比for...in更加可靠。
@ 用于循环遍历部署了Symbol.iterator接口属性的数据结构。
*/
let arr = [3, 5, 7];
arr.foo = "hello";
for (let i in arr) {
console.log(i) // "0", "1", "2", "foo"
}
for (let i of arr) {
console.log(i) // "3", "5", "7"
}
参考书籍 : 《 ES6标准入门 》( 阮一峰 )
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/93741.html
摘要:前端日报精选一行代码的逆向工程译只需四个步骤使用实现页面过渡动画如何实现一个基于的模板引擎解剖组件的多种写法与演进深入理解笔记扩展对象的功能性中文基础系列一之实现抽奖刮刮卡橡皮擦掘金小游戏个人文章和最常用的特征众成翻译常用语法总 2017-08-08 前端日报 精选 一行 JavaScript 代码的逆向工程【译】只需四个步骤:使用 React 实现页面过渡动画如何实现一个基于 DOM...
摘要:具体来说,包管理器就是可以通过命令行,帮助你把外部库和插件放到你的项目里面并在之后进行版本升级,这样就不用手工复制和更新库。现在有的包管理器主要是和。 一、基础 1、学习HTML基础 HTML给你的网页赋予了结构。它就像是人的骨架那样让你保持站立。首先你需要去学习语法以及它必须提供的一切。你的学习应该聚焦在下面这些东西上: 学习HTML基础,了解如何编写语义HTML 理解如何把网页分...
摘要:而第一种方法只能判断引用类型,不能判断值类型,因为值类型没有对应的构造函数描述一个对象的过程生成一个新的空对象指向这个新对象执行构造函数中的代码,即对赋值将新对象的属性指向构造函数的属性返回,即得到新对象。 最近在在看前端面试教程,这篇文章里大部分是看视频的过程中自己遇到的不清楚的知识点,内容很简单,只是起到一个梳理作用。有些地方也根据自己的理解在作者的基础上加了点东西,如有错误,欢迎...
阅读 3448·2021-10-11 11:06
阅读 2235·2019-08-29 11:10
阅读 1984·2019-08-26 18:18
阅读 3291·2019-08-26 13:34
阅读 1602·2019-08-23 16:45
阅读 1076·2019-08-23 16:29
阅读 2843·2019-08-23 13:11
阅读 3288·2019-08-23 12:58