溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JavaScript中常見的陷阱有哪些

發(fā)布時間:2021-11-06 15:46:59 來源:億速云 閱讀:124 作者:iii 欄目:web開發(fā)

這篇文章主要講解了“JavaScript中常見的陷阱有哪些”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“JavaScript中常見的陷阱有哪些”吧!

1. 你是否嘗試過對數(shù)組元素進(jìn)行排序?

JavaScript默認(rèn)使用字典序(alphanumeric)來排序。因此,[1,2,5,10].sort()的結(jié)果是[1, 10, 2, 5]。

如果你想正確的排序,應(yīng)該這樣做:[1,2,5,10].sort((a, b) => a - b)

2. new Date() 十分好用

new Date()的使用方法有:

不接收任何參數(shù):返回當(dāng)前時間;

接收一個參數(shù)x: 返回1970年1月1日 + x毫秒的值。

new Date(1, 1, 1)返回1901年2月1號。

然而….,new Date(2016, 1, 1)不會在1900年的基礎(chǔ)上加2016,而只是表示2016年。

3. 替換函數(shù)沒有真的替換?

let s = "bob"

const replaced = s.replace('b', 'l')

replaced === "lob" // 只會替換掉第一個b

s === "bob" // 并且s的值不會變

如果你想把所有的b都替換掉,要使用正則:

"bob".replace(/b/g, 'l') === 'lol'

4. 謹(jǐn)慎對待比較運(yùn)算

// 這些可以

'abc' === 'abc' // true

1 === 1 // true

// 然而這些不行

[1,2,3] === [1,2,3] // false

{a: 1} === {a: 1} // false

{} === {} // false

因?yàn)閇1,2,3]和[1,2,3]是兩個不同的數(shù)組,只是它們的元素碰巧相同。因此,不能簡單的通過===來判斷。

5. 數(shù)組不是基礎(chǔ)類型

typeof {} === 'object' // true

typeof 'a' === 'string' // true

typeof 1 === number // true

// 但是....

typeof [] === 'object' // true

如果要判斷一個變量var是否是數(shù)組,你需要使用Array.isArray(var)。

6. 閉包

這是一個經(jīng)典的JavaScript面試題:

const Greeters = []

for (var i = 0 ; i < 10 ; i++) {

Greeters.push(function () { return console.log(i) })

}

Greeters[0]() // 10

Greeters[1]() // 10

Greeters[2]() // 10

雖然期望輸出0,1,2,…,然而實(shí)際上卻不會。知道如何Debug嘛?

有兩種方法:

使用let而不是var。備注:可以參考Fundebug的另一篇博客 ES6之”let”能替代”var”嗎?

使用bind函數(shù)。備注:可以參考Fundebug的另一篇博客 JavaScript初學(xué)者必看“this”

Greeters.push(console.log.bind(null, i))

當(dāng)然,還有很多解法。這兩種是我最喜歡的!

7. 關(guān)于bind

下面這段代碼會輸出什么結(jié)果?

class Foo {

    constructor(name) {

        this.name = name

    }

    greet() {

        console.log('hello, this is ', this.name)

    }

    someThingAsync() {

        return Promise.resolve()

    }

    asyncGreet() {

        this.someThingAsync().then(this.greet)

    }

}

new Foo('dog').asyncGreet()

如果你說程序會崩潰,并且報錯:Cannot read property ‘name’ of undefined。

1、因?yàn)榈?6行的geet沒有在正確的環(huán)境下執(zhí)行。當(dāng)然,也有很多方法解決這個BUG!

我喜歡使用bind函數(shù)來解決問題:

asyncGreet () {

this.someThingAsync()

.then(this.greet.bind(this))

}

這樣會確保greet會被Foo的實(shí)例調(diào)用,而不是局部的函數(shù)的this。

2、如果你想要greet永遠(yuǎn)不會綁定到錯誤的作用域,你可以在構(gòu)造函數(shù)里面使用bind來綁 。

class Foo {

    constructor(name) {

        this.name = name this.greet = this.greet.bind(this)

    }

}

3、你也可以使用箭頭函數(shù)(=>)來防止作用域被修改。備注:可以參考Fundebug的另一篇博客 JavaScript初學(xué)者必看“箭頭函數(shù)”。

asyncGreet() {

    this.someThingAsync().then(() = >{

        this.greet()

    })

}

8. Math.min()比Math.max()大

Math.min() < Math.max() // false

感謝各位的閱讀,以上就是“JavaScript中常見的陷阱有哪些”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對JavaScript中常見的陷阱有哪些這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI