您好,登錄后才能下訂單哦!
譯者按: 漫漫編程路,總有一些坑讓你淚流滿面。
原文: Who said javascript was easy ?
為了保證可讀性,本文采用意譯而非直譯。另外,本文版權歸原作者所有,翻譯僅用于學習。
這里我們針對JavaScript初學者給出一些技巧和列出一些陷阱。如果你已經是一個磚家,也可以讀一讀。
JavaScript默認使用字典序(alphanumeric)來排序。因此,[1,2,5,10].sort()
的結果是[1, 10, 2, 5]
。
如果你想正確的排序,應該這樣做:[1,2,5,10].sort((a, b) => a - b)
new Date()
的使用方法有:
x
: 返回1970年1月1日 + x
毫秒的值。new Date(1, 1, 1)
返回1901年2月1號。new Date(2016, 1, 1)
不會在1900年的基礎上加2016,而只是表示2016年。 let s = "bob"
const replaced = s.replace('b', 'l')
replaced === "lob"
s === "bob"
如果你想把所有的b都替換掉,要使用正則:
"bob".replace(/b/g, 'l') === 'lol'
// 這些可以
'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]是兩個不同的數組,只是它們的元素碰巧相同。因此,不能簡單的通過===
來判斷。
typeof {} === 'object'
typeof 'a' === 'string'
typeof 1 === number
// 但是....
typeof [] === 'object'
如果要判斷一個變量var
是否是數組,你需要使用Array.isArray(var)
。
這是一個經典的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"嗎?](https://blog.fundebug.com/2017/05/04/ hy-you-should-not-use-var/)bind
函數。備注:可以參考Fundebug的另一篇博客[ JavaScript初學者必看“this”](https://blog.fundebug.com/2017/05/17/ avascript-this-for-beginners/)
Greeters.push(console.log.bind(null, i))
當然,還有很多解法。這兩種是我最喜歡的!
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。
因為第16行的geet
沒有在正確的環境下執行。當然,也有很多方法解決這個BUG!
bind
函數來解決問題:
asyncGreet () {
this.someThingAsync()
.then(this.greet.bind(this))
}
這樣會確保greet
會被Foo的實例調用,而不是局部的函數的this
。
greet
永遠不會綁定到錯誤的作用域,你可以在構造函數里面使用bind
來綁 。
class Foo {
constructor (name) {
this.name = name
this.greet = this.greet.bind(this)
}
}
asyncGreet () {
this.someThingAsync()
.then(() => {
this.greet()
})
}
Math.min() < Math.max()
因為Math.min() 返回 Infinity, 而 Math.max()返回 -Infinity。
Fundebug專注于JavaScript、微信小程序、微信小游戲、支付寶小程序、React Native、Node.js和Java實時BUG監控。 自從2016年雙十一正式上線,Fundebug累計處理了7億+錯誤事件,得到了Google、360、金山軟件、百姓網等眾多知名用戶的認可。歡迎免費試用!
轉載時請注明作者Fundebug以及本文地址:
https://blog.fundebug.com/2017/06/28/who-said-js-was-easy/
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。