【学习笔记】JavaScript编码规范-对象

时间:2015-05-13 14:47:18   收藏:0   阅读:145

使用字面量语法创建对象

//good
var itemA = {};

//bad
var itemB = new Object();

不要使用保留字(IE8不起作用)

//good
var studentA = {defaults:{name:'Jay'},sexual:male};

//bad
var studentB = {default:{name:'Lucy'},sexual:female};

使用易读性较高的同义词代替保留字

//good
var studentA = {classNo:'1'};

//bad
var studentB = {klass:'2'};

//bad
var studentC = {class:'3'};


评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!