摘要: Define object:var color = "blue";var speed = 120;var car = {color, speed};console.log(car.color); // blueconsole.log(car.speed); // 120in ES5:var ca... 阅读全文
posted @ 2015-01-01 22:10 Zhentiw 阅读(204) 评论(0) 推荐(0)