JavaScript权威指南笔记

  • 声明变量不带var,JS会在全局对象中创建一个同名属性,坑爹

  • JS在函数作用域上倒是和Python有些相似,不过Python是直接抛出错误,而JS是打印出undefined.

.. code:: python

>>> def foo():
...   print(a)
...   a = 1
...
>>> foo()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
    File "<stdin>", line 3, in foo
UnboundLocalError: local variable 'a' referenced before assignment

.. code:: javascript

> function foo() {
    ...   console.log(x);
    ...   var x = 1;
    ...   console.log(x);
    ...
}
>
> foo()
undefined
1
  • JS的in操作符,"x" in {x: 1} 表现还比较正常,但是对数组操作的时候,就不是正规军了:

.. code:: javascript

> 1 in [1]
false
> 1 in [1,2]
true
> "0" in [1]
true
> "0" in [1, 2]

原因在于,JS把前面转成索引。。。

  • delete 只是删除引用

更多文章
  • Linux使用redshift自动调整屏幕色温
  • Go设计模式:桥接模式和策略模式
  • Go设计模式:单例模式、原型模式和Builder模式
  • 操作系统也是CRUD
  • Go设计模式:简单工厂模式
  • 把USB设备穿透给虚拟机里的系统
  • debug故事之:事务让生活更美好
  • Go设计模式:模板模式
  • Go设计模式:适配器模式
  • Go设计模式:Iterator
  • glusterfs 笔记
  • 用peewee代替SQLAlchemy
  • Go的slice工作机制
  • Linux系统迁移记录(从HDD到SSD)
  • Redis是如何工作的?