| header 1 | header 2 | header 3 | header 4 |
|---|---|---|---|
| rc11 | rc12 | rc13 | rc14 |
| rc21 | rc23 | rc24 | |
| rc31 | rc32 | rc33 | rc34 |
| rc41 | rc42 | rc44 | |
|
line 1 line 2 line 3 |
var person = {
firstName:"John",
lastName:"Doe",
age:50,
eyeColor:"blue",
sayHello: function() {
console.log("Hello!");
}
};
var person = new Object();
person.firstName = "John";
person.lastName = "Doe";
person.age = 50;
person.eyeColor = "blue";
function person(first, last, age, eye) {
this.firstName = first;
this.lastName = last;
this.age = age;
this.eyeColor = eye;
this.sayHello = function() {
console.log("Hello.";
}
}
var myFather = new person("John", "Doe", 50, "blue");
var myMother = new person("Sally", "Rally", 48, "green");