JavaScript
JavaScript 对象
对象也是一个变量,但对象可以包含多个值(多个变量)。
源代码:
点击运行 »
var car = { type: "Fiat", model: 500, color: "white" };
运行结果:
点击运行 »