원본글 : http://javascriptweblog.wordpress.com/2010/03/16/five-ways-to-create-objects/#more-21
Five ways to create objects…
1. Simple Object Literal
{}를 통해 빈 객체를 생성한 다음, 프로퍼티를 추가해 나가는 방법
2. Nested Object Literal
{} 내부에 프로퍼티를 미리 정의한 다음 객체를 생성하는 방법
3. Constructor using Object Literal
{}를 통해 객체를 만드는 함수를 만들고, 이를 호출하는 방식으로 객체를 생성하는 방법
4. Simple Constructor for new
생성자 함수를 만든 다음, new를 통해 객체를 생성하는 방법
5. Prototype with Constructor for new
Prototype을 가진 생성자 함수와 new를 이용해서 객체를 생성하는 방법.