這裡有一些 Javascript初學者應該知道的技巧和陷阱。如果你已經是專家了,順便溫習一下。
Javascript也只不過是一種程式語言。怎麼可能出錯嗎?
Javascript 的sort()函數在預設情況下使用字母數字(字串Unicode碼點)排序。
所以[1,2,5,10].sort() 會輸出 [1, 10, 2, 5].
要正確的排序一個陣列, 你可以用[1,2,5,10].sort((a, b) => a — b)
很簡單的解決方案, 前提是你得知道有這麼個坑
new Date() 可以接受:
let s = "bob" const replaced = s.replace('b', 'l') replaced === "lob" s === "bob"
replace 只會取代第一個符合的字串:
如果你想要取代所有符合的字串,你可以使用帶有/g標誌的正規表示式 :
"bob".replace(/b/g, 'l') === 'lol' // 替换所有匹配的字符串
// These are ok 'abc' === 'abc' // true 1 === 1 // true // These are not [1,2,3] === [1,2,3] // false {a: 1} === {a: 1} // false {} === {} // false
===比較。
typeof {} === 'object' // true typeof 'a' === 'string' // true typeof 1 === number // true // But.... typeof [] === 'object' // true
Array.isArray(myVar)
这是一个很有名的面试题:
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… ? 你知道它为什么不是这样输出的吗? 你会怎样修改让它输出 0, 1, 2… ?
这里有两种可能的解决方法:
用 let 替代 var. Boom. 解决了.
let和var的不同在于作用域。var的作用域是最近的函数块,let的作用域是最近的封闭块,封闭块可以小于函数块(如果不在任何块中,则let和var都是全局的)。(来源)
替代方法: 用 bind:
Greeters.push(console.log.bind(null, i))
还有很多其他方法。这只是我的两个首选
你认为这个会输出什么?
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,给你一分。
原因: greet 没有在正确的上下文中运行。同样,这个问题依然有很多解决方案。
我个人喜欢
asyncGreet () { this.someThingAsync() .then(this.greet.bind(this)) }
这样可以确保类的实例作为上下文调用greet。
如果你认为greet 不应该在实例上下文之外运行, 你可以在类的constructor中绑定它:
class Foo { constructor (name) { this.name = name this.greet = this.greet.bind(this) } }
你还应该知道箭头函数( => )可以用来保留上下文。这个方法也可以:
尽管我认为最后一种方法并不优雅。 我很高兴我们解决了这个问题。 祝贺你,你现在可以放心地把你的程序放在互联网上了。甚至运行起来可能都不会出岔子(但是通常会)Cheers \o/asyncGreet () {
this.someThingAsync()
.then(() => {
this.greet()
})
}
以上是對初學者來說 Javascript 不簡單的詳細內容。更多資訊請關注PHP中文網其他相關文章!