es6知识点
Posted zhongfang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es6知识点相关的知识,希望对你有一定的参考价值。
箭头函数在一下情况中避免使用
使用箭头函数定义对象方法
let obj = {
value: 1,
getValue: () => console.log(this.value);
}
obj.getValue(); // undefined
定义原型方法时
function Foo() {
this.value = 1;
}
Foo.prototype.getValue = ()=>{
console.log(this.value); // undefined
}
let foo = new Foo()
foo.getValue();
DOM绑定事件时作为事件的回调函数
const button = document.getElementById(‘button‘);
button.addEventListener(‘click‘, ()=>{
console.log(this); // window
this.innerhtml = ‘click-button‘
})
Symbol的使用场景
唯一值
// 以往写法 这种写法很容易与其他地方的代码发生冲突
if(obj.bool) {
getValue(obj)
}
obj.bool = true;
// 使用Symbol
let bool = Symbol(‘bool‘);
if(obj[bool]) {
getValue(obj)
}
obj[bool] = true
出现频繁的字符串或者数值
// 普通定义字符串或者数值,不利于后期的代码的维护
const status_pending = ‘pending‘
const status_fulfilled = ‘fulfilled‘
const status_rejected = ‘rejected‘
// Symbol
const status_pending = Symbol()
const status_fulfilled = Symbol()
const status_rejected = Symbol()
私有变量
const Example = (function() {
let name = Symbol(‘name‘);
class Example{
constructor() {
this[name] = ‘name‘
}
getName() {
return this[name];
}
}
return Example
})()
var ex = new Example();
console.log(ex.getName()) // name
console.log(ex.name) // undefined
Set和Map
数组去重
let arr = [1,1,2,2,3,3,4,4,5,5];
console.log([...new Set(arr)]) // [1,2,3,4,5]
以上是关于es6知识点的主要内容,如果未能解决你的问题,请参考以下文章