您好,登錄后才能下訂單哦!
今天小編給大家分享的是ES6箭頭函數與function區別是什么?很多人都不太了解,今天小編為了讓大家更加了解,所以給大家總結了以下內容,一起往下看吧。一定會有所收獲的哦。
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
//使用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的指向。
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() {}
關于ES6箭頭函數與function區別是什么就分享到這里了,當然并不止以上和大家分析的辦法,不過小編可以保證其準確性是絕對沒問題的。希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。