好程式設計師分享JavaScript中8個常見的陷阱

好程式設計師IT發表於2019-04-10

好程式設計師 分享 JavaScript 8 個常見的陷阱 這裡我們針對 JavaScript 初學者給出一些技巧和列出一些陷阱。如果你已經是一個磚家,也可以讀一讀。

 

1. 你是否嘗試過對陣列元素進行排序?

 

JavaScript 預設使用字典序 (alphanumeric) 來排序。因此, [1,2,5,10].sort() 的結果是 [1, 10, 2, 5]

 

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

 

2. new Date() 十分好用

 

new Date() 的使用方法有:

 

不接收任何引數:返回當前時間;

接收一個引數 x: 返回 1970 1 1 + x 毫秒的值。

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

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

3. 替換函式沒有真的替換?

 

let s = "bob"

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

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

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

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

 

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

4. 謹慎對待比較運算

 

// 這些可以

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

1 === 1 // true

// 然而這些不行

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

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

{} === {} // false

因為 [1,2,3] [1,2,3] 是兩個不同的陣列,只是它們的元素碰巧相同。因此,不能簡單的透過 === 來判斷。

 

5. 陣列不是基礎型別

 

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

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

typeof 1 === number // true

// 但是 ....

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

如果要判斷一個變數 var 是否是陣列,你需要使用 Array.isArray(var)

 

6. 閉包

 

這是一個經典的 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, …,然而實際上卻不會。知道如何 Debug 嘛?

有兩種方法:

 

使用 let 而不是 var 。備註:可以參考 Fundebug 的另一篇部落格 ES6 之” let ”能替代” var ”嗎 ?

使用 bind 函式。備註:可以參考 Fundebug 的另一篇部落格 JavaScript 初學者必看“ this

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

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

 

7. 關於 bind

 

下面這段程式碼會輸出什麼結果?

 

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 、因為第 16 行的 geet 沒有在正確的環境下執行。當然,也有很多方法解決這個 BUG

 

我喜歡使用 bind 函式來解決問題:

 

asyncGreet () {

this.someThingAsync()

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

}

這樣會確保 greet 會被 Foo 的例項呼叫,而不是區域性的函式的 this

 

2 、如果你想要 greet 永遠不會繫結到錯誤的作用域,你可以在建構函式里面使用 bind 來綁 。

 

class Foo {

    constructor(name) {

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

    }

}

3 、你也可以使用箭頭函式 (=>) 來防止作用域被修改。備註:可以參考 Fundebug 的另一篇部落格 JavaScript 初學者必看“箭頭函式”。

 

asyncGreet() {

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

        this.greet()

    })

}

8. Math.min() Math.max()

 

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


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69913892/viewspace-2640963/,如需轉載,請註明出處,否則將追究法律責任。

相關文章