理解语句,变量名称,空格,制表符,以及其他的一些基本javascript语法
Example 2.1. 一个简单的变量声明
var foo = 'hello world';
Example 2.2. 引号外的空格和制表符是没有意义的
Example 2.3. 括号内的表达式拥有更高的优先级
2 * 3 + 5; // 返回11,先进行乘法运算 2 * (3 + 5); // 返回16,先进行的是括号内的加法运算
Example 2.4. 制表符只是为了增加代码可读性,并没有什么其他的作用
var foo = function() { console.log('hello'); };
Copyright Rebecca Murphey, released under the Creative Commons Attribution-Share Alike 3.0 United States license.