【学习笔记】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)