基本的Java Initialize概念

时间:2013-09-02 09:53:18

标签: javascript

Data (Global Variables):

Car color.
Car x location.
Car y location.
Car x speed.

设定:

Initialize car color.
Initialize car location to starting point.
Initialize car speed.

绘制:

Fill background.
Display car at location with color.
Increment car's location by speed.

我是从一个基本概念初始化网站上读到的。

为什么我们需要初始化?

创建对象有什么帮助?

我们如何调整并为我们需要的对象进行正确的初始化?

1 个答案:

答案 0 :(得分:0)

如果您没有初始化,则无法访问对象属性(因为它将是未定义的)。

var test = {
    definedProperty : "Hello"
};

alert(test.definedProperty);
alert(test.undefinedProperty);

http://jsfiddle.net/3cWzw/