原文地址:http://dmitry.baranovskiy.com/post/91403200 看了文章中五个小例子,写了写自己的理解 #demo1 if (!("a" in window)) { var a = 1; } alert(a); #demo1 主要用到javascript执行时候的预解析(变量声明提前),进入执行上下文的时候,解释器会把当前上下文中所有的函数声明.变量声明.函数形参提前,对象变量的状态大体如下: var a; //等同于 var a = undefine…
原文:http://www.techienote.com/2014/04/how-to-install-oracle-12c-enterprise-edition-database-ubuntu-13-10.html.ubuntu14.04 LTS同样适用 Following is the how to for installing Oracle Database 12C on Ubuntu 13.10Note : I’m not running this installation on a p…