1.写法差别
// function的写法
function fn(a, b){
return a+b;
}
// 箭头函数的写法
let foo = (a, b) =>{ return a + b }
2.this的指向差别
在function中,this指向的是挪用该函数的对象;
//运用function定义的函数
function foo(){
console.log(this);
}
var obj = { aa: foo };
foo(); //Window
obj.aa() //obj { aa: foo }
而在箭头函数中,this永久指向定义函数的环境。
//运用箭头函数定义函数
var foo = () => { console.log(this) };
var obj = { aa:foo };
foo(); //Window
obj.aa(); //Window
function Timer() {
this.s1 = 0;
this.s2 = 0;
// 箭头函数
setInterval(() => {
this.s1++;
console.log(this);
}, 1000); // 这里的this指向timer
// 一般函数
setInterval(function () {
console.log(this);
this.s2++; // 这里的this指向window的this
}, 1000);
}
var timer = new Timer();
setTimeout(() => console.log('s1: ', timer.s1), 3100);
setTimeout(() => console.log('s2: ', timer.s2), 3100);
// s1: 3
// s2: 0
3.箭头函数不能够当组织函数
//运用function要领定义组织函数
function Person(name, age){
this.name = name;
this.age = age;
}
var lenhart = new Person(lenhart, 25);
console.log(lenhart); //{name: 'lenhart', age: 25}
//尝试运用箭头函数
var Person = (name, age) =>{
this.name = name;
this.age = age;
};
var lenhart = new Person('lenhart', 25); //Uncaught TypeError: Person is not a constructor
别的,因为箭头函数没有本身的this,所以固然也就不能用call()、apply()、bind()这些要领去转变this的指向。
4.变量提拔
function存在变量提拔,能够定义在挪用语句后;
foo(); //123
function foo(){
console.log('123');
}
箭头函数以字面量情势赋值,是不存在变量提拔的;
arrowFn(); //Uncaught TypeError: arrowFn is not a function
var arrowFn = () => {
console.log('456');
};
console.log(f1); //function f1() {}
console.log(f2); //undefined
function f1() {}
var f2 = function() {}