修改Javascript大小写

This commit is contained in:
Zhicheng Wang 2016-05-09 21:55:34 +08:00
parent 99d89072d5
commit 65a3fdb9f3
2 changed files with 6 additions and 6 deletions

View File

@ -479,7 +479,7 @@ include _util-fns
either in this version of the language or a dialect that strives to be
compatible with it such as [TypeScript](#typesScript).
最新的被认可的Javascript版本是[ECMAScript 2015](http://www.ecma-international.org/ecma-262/6.0/)也交“ES2015”或“ES6”。Angular 2的开发者要么这个版本的Javascript要么使用与这个版本兼容的语言比如[TypeScript](#typesScript)。
最新的被认可的JavaScript版本是[ECMAScript 2015](http://www.ecma-international.org/ecma-262/6.0/)也叫“ES2015”或“ES6”。Angular 2的开发者要么使用这个版本的JavaScript要么使用与这个版本兼容的语言比如[TypeScript](#typesScript)。
Most modern browsers today only support the prior "ECMAScript 5" (AKA ES5) standard.
Applications written in ES2015 or one of its dialects must be "[transpiled](#transpile)"
@ -499,7 +499,7 @@ include _util-fns
[ECMAScript 2015](http://www.ecma-international.org/ecma-262/6.0/)
(AKA "ES2015" or "ES6")
最新发布的Javascript版本[ECMAScript 2015](http://www.ecma-international.org/ecma-262/6.0/)
最新发布的JavaScript版本[ECMAScript 2015](http://www.ecma-international.org/ecma-262/6.0/)
(即 "ES2015" 或 "ES6")
:marked
## ES2015
@ -522,7 +522,7 @@ include _util-fns
Short hand for "ECMAScript 5", the version of JavaScript run by most modern browsers.
See [ECMAScript](#ecmascript).
“ECMAScript 5”的简写大部分现代浏览器使用的Javascript版本。请看[ECMAScript](#ecmascript)。
“ECMAScript 5”的简写大部分现代浏览器使用的JavaScript版本。请看[ECMAScript](#ecmascript)。
// #enddocregion e2
// #docregion f-l
@ -901,7 +901,7 @@ include _util-fns
a [data binding](#data-binding). Learn how to write template expressions
in the [Template Syntax](guide/template-syntax.html#template-expressions) chapter.
Angular在[数据绑定data binding](#data-binding)内评估的类似Javascript语法的表达式。在[模板语法Template Syntax](guide/template-syntax.html#template-expressions)章节了解更多模板表达式的知识。
Angular在[数据绑定data binding](#data-binding)内求值的类似JavaScript语法的表达式。在[模板语法Template Syntax](guide/template-syntax.html#template-expressions)章节了解更多模板表达式的知识。
// #enddocregion t1
// #docregion t2
:marked
@ -912,7 +912,7 @@ include _util-fns
The process of transforming code written in one form of JavaScript
(e.g., TypeScript) into another form of JavaScript (e.g., [ES5](#es5)).
把用Javascript形式语言比如TypeScript编写的程序转换到另一个形式的JavaScript例如[ES5](#es5))。
把用JavaScript形式语言比如TypeScript编写的程序转换到另一个形式的JavaScript例如[ES5](#es5))。
:marked
## TypeScript
.l-sub-section

View File

@ -123,7 +123,7 @@ figure.image-display
:marked
Hold on! We wrote a TypeScript file but were loading a JavaScript file?
等等我们编写了TypeScript文件但是我们却加载了一个Javascript文件
等等我们编写了TypeScript文件但是我们却加载了一个JavaScript文件
Thats a reminder that we need to compile our TypeScript test files as we do our TypeScript application files. Do that next.