JavaScript中8个常见的陷阱
hlxj2030
7年前
<p>这里我们针对JavaScript初学者给出一些技巧和列出一些陷阱。如果你已经是一个砖家,也可以读一读。</p> <h3>1. 你是否尝试过对数组元素进行排序?</h3> <p>JavaScript默认使用字典序(alphanumeric)来排序。因此, [1,2,5,10].sort() 的结果是 [1, 10, 2, 5] 。</p> <p>如果你想正确的排序,应该这样做: [1,2,5,10].sort((a, b) => a - b)</p> <h3>2. new Date() 十分好用</h3> <p>new Date() 的使用方法有:</p> <ul> <li>不接收任何参数:返回当前时间;</li> <li>接收一个参数 x : 返回1970年1月1日 + x 毫秒的值。</li> <li>new Date(1, 1, 1) 返回1901年2月1号。</li> <li>然而...., new Date(2016, 1, 1) 不会在1900年的基础上加2016,而只是表示2016年。</li> </ul> <h3>3. 替换函数没有真的替换?</h3> <pre> <code class="language-javascript">let s = "bob" const replaced = s.replace('b', 'l') replaced === "lob" // 只会替换掉第一个b s === "bob" // 并且s的值不会变</code></pre> <p>如果你想把所有的b都替换掉,要使用正则:</p> <pre> <code class="language-javascript">"bob".replace(/b/g, 'l') === 'lol'</code></pre> <h3>4. 谨慎对待比较运算</h3> <pre> <code class="language-javascript">// 这些可以 'abc' === 'abc' // true 1 === 1 // true // 然而这些不行 [1,2,3] === [1,2,3] // false {a: 1} === {a: 1} // false {} === {} // false</code></pre> <p>因为[1,2,3]和[1,2,3]是两个不同的数组,只是它们的元素碰巧相同。因此,不能简单的通过 === 来判断。</p> <h3>5. 数组不是基础类型</h3> <pre> <code class="language-javascript">typeof {} === 'object' // true typeof 'a' === 'string' // true typeof 1 === number // true // 但是.... typeof [] === 'object' // true</code></pre> <p>如果要判断一个变量 var 是否是数组,你需要使用 Array.isArray(var) 。</p> <h3>6. 闭包</h3> <p>这是一个经典的JavaScript面试题:</p> <pre> <code class="language-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</code></pre> <p>虽然期望输出0,1,2,...,然而实际上却不会。知道如何Debug嘛?</p> <p>有两种方法:</p> <ul> <li>使用 let 而不是 var 。备注:可以参考Fundebug的另一篇博客 <a href="/misc/goto?guid=4959750422841037267" rel="nofollow,noindex">ES6之"let"能替代"var"吗?</a></li> <li>使用 bind 函数。备注:可以参考Fundebug的另一篇博客 <a href="/misc/goto?guid=4959750422933971590" rel="nofollow,noindex">JavaScript初学者必看“this”</a> <pre> <code class="language-javascript">Greeters.push(console.log.bind(null, i))</code></pre> 当然,还有很多解法。这两种是我最喜欢的!</li> </ul> <h3>7. 关于 bind</h3> <p>下面这段代码会输出什么结果?</p> <pre> <code class="language-javascript">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()</code></pre> <p>如果你说程序会崩溃,并且报错:Cannot read property 'name' of undefined。</p> <p>因为第16行的 geet 没有在正确的环境下执行。当然,也有很多方法解决这个BUG!</p> <ul> <li>我喜欢使用 bind 函数来解决问题: <pre> <code class="language-javascript">asyncGreet () { this.someThingAsync() .then(this.greet.bind(this)) }</code></pre> 这样会确保 greet 会被Foo的实例调用,而不是局部的函数的 this 。</li> <li>如果你想要 greet 永远不会绑定到错误的作用域,你可以在构造函数里面使用 bind 来绑 。 <pre> <code class="language-javascript">class Foo { constructor (name) { this.name = name this.greet = this.greet.bind(this) } }</code></pre> </li> <li>你也可以使用箭头函数(=>)来防止作用域被修改。备注:可以参考Fundebug的另一篇博客 <a href="/misc/goto?guid=4959750423016105551" rel="nofollow,noindex">JavaScript初学者必看“箭头函数”</a> 。 <pre> <code class="language-javascript">asyncGreet () { this.someThingAsync() .then(() => { this.greet() }) }</code></pre> </li> </ul> <h3>8. <a href="/misc/goto?guid=4959750423098577761" rel="nofollow,noindex">Math.min()比Math.max()大</a></h3> <pre> <code class="language-javascript">Math.min() < Math.max() // false</code></pre> <p>因为Math.min() 返回 Infinity, 而 Math.max()返回 -Infinity。</p> <p>欢迎加入我们Fundebug的 <strong>全栈BUG监控交流群: 622902485</strong> 。</p> <p><img src="https://simg.open-open.com/show/37aab51a0b9583cf0cb9426da1e81cdc.jpg"></p> <p> </p> <p><a href="/misc/goto?guid=4959750423183005407" rel="nofollow,noindex">来自:</a><a href="/misc/goto?guid=4959750423183005407" rel="nofollow,noindex">https://blog.fundebug.com/2017/06/28/who-said-js-was-easy/</a></p> <p> </p> <p> </p> <p> </p>