来源:自学PHP网 时间:2014-12-14 21:15 作者: 阅读:次
[导读] ECMAScript 6 是JavaScript的下一代标准,其目标,是使得JavaScript可以用来编写复杂的应用程序、函数库和代码的自动生成器(code generator)。...
在NodeJS中启用ES6 (harmony) 版本: 开始吧, Linux下启用 Node version : v0.11.6 先来看一看版本 harm ;) : $ node --v8-options | grep harm --harmony_typeof (enable harmony semantics for typeof) --harmony_scoping (enable harmony block scoping) --harmony_modules (enable harmony modules (implies block scoping)) --harmony_symbols (enable harmony symbols (a.k.a. private names)) --harmony_proxies (enable harmony proxies) --harmony_collections (enable harmony collections (sets, maps, and weak maps)) --harmony_observation (enable harmony object observation (implies harmony collections) --harmony_typed_arrays (enable harmony typed arrays) --harmony_array_buffer (enable harmony array buffer) --harmony_generators (enable harmony generators) --harmony_iteration (enable harmony iteration (for-of)) --harmony_numeric_literals (enable harmony numeric literals (0o77, 0b11)) --harmony_strings (enable harmony string) --harmony_arrays (enable harmony arrays) --harmony (enable all harmony features (except typeof))
$ node --use-strict $(node --v8-options | grep harm | awk '{print $1}' | xargs) #ES6
node --harmony app.js
关键字 let 可以让我们将变量的作用范围限定在一个代码块中 'use strict'; if (1) { let b = 2; console.log(b); //2 } console.log(typeof b); //undefined |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com