摘要: /*---------------------对象的扩展---------------------*/ //属性简写 ,属性名为变量名, 属性值为变量的值 export default function(){ const a='aaa'; const b={a}; console.info(b);//b==={a: "aaa"} function d(x,y){... 阅读全文
posted @ 2017-04-19 15:46 韭菜茄子 阅读(324) 评论(0) 推荐(0) 编辑