摘要:
setTimeout(function(){ console.log('立即执行setTimeout'); }, 0); var d = new Date().getTime(); while(true) { var dd = new Date().getTime(); if( ( dd - d ) 阅读全文
摘要:
如何让程序是实现静默安装? 背景 现在常用的制作安装程序的软件有, InstallShield ,Inno Setup , Microsoft Windows Installer , Windows 补丁包 , InstallShield with MSI , WISE Installer , Nu 阅读全文
摘要:
###ECMAScript 规格文档 http://www.ecma-international.org/ecma-262/6.0/ 相等运算符 The comparison x == y, where x and y are values, produces true or false. 运算过程 阅读全文