真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么使用VSCode箭頭函數(shù)

本篇內(nèi)容主要講解“怎么使用VSCode箭頭函數(shù)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“怎么使用VSCode箭頭函數(shù)”吧!

創(chuàng)新互聯(lián)主要從事成都做網(wǎng)站、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)無錫,10多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575

箭頭函數(shù)是必須要掌握的,今天我們一起來學(xué)習(xí)一下,它給開發(fā)者帶來方便的同時,也要留意它的「無能」。先看一個例子:

const names = [     'wsy',     'suyan',     '前端小課' ]; let lengths = names.map(name => name.length); console.log('lengths = ', lengths);

結(jié)果如圖:

怎么使用VSCode箭頭函數(shù)

先看下它的語法:

1. 無參數(shù)

function call(callback) {     callback(); } call(() => {     console.log('arrow void'); }); // 箭頭函數(shù)類似于下面這個函數(shù) call(function () {     console.log('void'); });

2. 只有一個參數(shù),無返回值

function call(callback) {     callback('前端小課'); } call(name => {     console.log('arrow', name); }); // 箭頭函數(shù)類似于下面這個函數(shù) call(function (name) {     console.log(name); });

3. 只有一個參數(shù),有返回值

function call(callback) {     // 返回值為 4     let len = callback('前端小課');     console.log(len); }  // 只有一行表達式省略大括號 call(name => name.length); // 類似于這個 call(name => {     return name.length; }); // 箭頭函數(shù)類似于下面這個函數(shù) call(function (name) {     return name.length; });

4.有多個參數(shù),有返回值

function call(callback) {     let len = callback(1, 2, 3);     console.log(len); // 6 }  // 多個個參數(shù),有返回值,只有一行表達式省略大括號 call((a, b, c) => a + b + c); // 類似與這個 call((a, b, c) => {     return a + b + c; }); // 箭頭函數(shù)類似于下面這個函數(shù) call(function (a, b, c) {     return a + b + c; });

從上面這些例子可以知道,每個箭頭函數(shù)都能寫出一個與其功能相同的普通函數(shù),那為什么還用箭頭函數(shù)?

在 連接你、我、他 ; this 這節(jié)課程中使用箭頭函數(shù)解決了 this 指向的問題。不知道你們有沒有發(fā)現(xiàn)當(dāng)寫下面這兩個函數(shù)的時候,VSCode  默認使用的是箭頭函數(shù):

setTimeout(() => {     // 這里是箭頭函數(shù) }, 100);  setInterval(() => {     // 這個是箭頭函數(shù) }, 200);

使用箭頭函數(shù)有幾點需要留意:

1. 讓函數(shù)更簡短,上面例 3 就是一個很好的例子;

2. 沒有自己的 this 和 argument,比如有如下代碼:

let person = {     name: 'suyan',     showName: function (age) {         window.setTimeout(() => {             console.log('this = ', this);             console.log('arguments = ', arguments);             console.log(this.name, age);         }, 100);     } }; person.showName(20);

打印結(jié)果為:

怎么使用VSCode箭頭函數(shù)

3. 不能作為構(gòu)造函數(shù);

let Dog = name => {     this.name = name; }; // 錯誤 Uncaught TypeError: Dog is not a constructor let aDog = new Dog('fe');  let Dog2 = function (name) {     this.name = name; }; // 正確 let aDog2 = new Dog2('fe');

4. 箭頭函數(shù)沒有 prototype 屬性:

let Dog = name => {     this.name = name; }; Dog.prototype; // undefined

5.不能通過 call、apply 綁定 this

var name = 'I am widow';  let animal = {     name: 'animal',     showName: age => {         console.log('this = ', this);         console.log('name | age = ', this.name, age);     } }; let dog = {     name: 'dog' };  animal.showName.call(dog, 20); animal.showName.apply(dog, [21]); let bindName = animal.showName.bind(dog, 22); bindName();

運行代碼,結(jié)果如下:

怎么使用VSCode箭頭函數(shù)

由于箭頭函數(shù)沒有 this 指針,不能通過 call、apply、bind 的方式來修改 this。只能傳遞參數(shù),this 參數(shù)將被忽略。

到此,相信大家對“怎么使用VSCode箭頭函數(shù)”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!


網(wǎng)頁標題:怎么使用VSCode箭頭函數(shù)
轉(zhuǎn)載來源:http://weahome.cn/article/ppescp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部