当前位置: 移动技术网 > IT编程>开发语言>JavaScript > JavaScript中常见的八个陷阱总结

JavaScript中常见的八个陷阱总结

2017年12月12日  | 移动技术网IT编程  | 我要评论

前言

这里我们针对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`。 (备注:可以参考这篇文章 )
  • - 使用`bind`函数。(备注:可以参考这篇文章 )
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

因为第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()
 })
}

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

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

因为math.min() 返回 infinity, 而 math.max()返回 -infinity。

原文: who said javascript was easy ?

译者: fundebug

为了保证可读性,本文采用意译而非直译。另外,本文版权归原作者所有,翻译仅用于学习。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对移动技术网的支持。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网