js中英文对照

1.raw javascript:原生javascript
2.closure:闭包
3.arrow function:箭头函数(es6)
4.constructor:构造函数
5.prototype:原型
6.the scope of variables:变量范围
7.anonymous function:匿名函数
8.loop:循环
9.bracket notation:中括号
10.built-in object:内置对象
11.Regular expressions:正则表达式
12.slashes:斜杠
13.flag:标记
14.parentheses:圆括号
15.plain object :纯粹的对象 {}
16.semi-colons:分号
17.braces:大括号
18.Reserved keywords:储备词汇 ---javascript的储备词汇,自己不能定义变量。
19.lexical scope:作用域
20.Object Literal:对象字面量

A JavaScript object literal is a comma-separated list of name-value pairs wrapped in curly braces. Object literals encapsulate data, enclosing it in a tidy package. This minimizes the use of global variables which can cause problems when combining code.

The following demonstrates an example object literal:

var myObject = {
    sProp: 'some string value',
    numProp: 2,
    bProp: false
};

21.comma:逗号
22.layout:布局
23.liquid layout:流式布局

你可能感兴趣的:(js中英文对照)