ES6的代码规范写法整理,引号的使用,单引号' ' 优先(如果不是引号嵌套,不要使用双引号), 空格的使用问题:(关键字后 符号后 排版 函数 赋值符号= )等。
正常情况:console.log('hello there') 双引号转码: $("
")
a 函数的括号:function hello (name) {} 看 (参数)的 "括号外左右"( ) 是有空格的,"括号内name左右" 是没有空格的
b 关键字后需要空格:if (condition) { ... } if和()之间需要有空格
c 赋值符号 = 两边需要有空格 :var x = 2 赋值符号 = 两边需要空格
d 字符串拼接符号 + 两边需要空格:var message = 'hello, ' + name + '!' 常量和变量之间的+号,左右两边需要空格
e 逗号,前面不要留空格,后面留空格:var list = [1, 2, 3, 4] function greet (name, options) { ... } 逗号前面不留后面留空格
if () {} else {}中: } else { 要在一行内
if (XXX) {
//
} else {
//
}
var location = env.development ? 'localhost' : 'www.api.com' 一行内写法
var location = env.development
? 'localhost'
: 'www.api.com'
连缀写法:
var leds = stage.selectAll('.led')
.data(data)
.enter().append('svg:svg')
.class('led', true)
.attr('width', (radius + margin) * 2)
.append('svg:g')
.attr('transform', 'translate(' + (radius + margin) + ',' + (radius + margin) + ')')
.call(tron.led);
var value = 'hello world';
空一行
/ / 这里是注释
console.log(value)
多行注释:(这也可以用到版权信息注释)
/**
* make() returns a new element
* based on the passed in tag name
*
* @param
* @return
*/
9、开头问题:不要 ( [ ` 开头, 在开头前要加上;号
;(function () {window.alert('ok')}())
;[1, 2, 3].forEach(bar)
;`hello`.indexOf('o')
var errorMessage = 'This is a super long error that ' +
'was thrown because of Batman.'+
'When you stop to think about ' +
'how Batman had anything to do '+
'with this, you would get nowhere ' +
'fast.';
循环 或者 多行字符串 用join方法来构建
function inbox(messages) {
items = [];
for(i = 0; i < length; i++) {
items[i] = messages[i].message;
}
return'
}
a 命名私有属性时前面加个下划线 _ 如:构造函数中 this._firstName = 'Panda'; var _firstName = firstName;
b jq变量命名加上个$,用来区分js变量
相关文章:
相关视频:
Javascript - ES6实战视频课程-免费在线视频教程
以上是实用,js开发中ES6的代码规范写法整理大全的详细内容。更多信息请关注PHP中文网其他相关文章!