#Javascript : prototype-based programming
OOP의 문법을 비슷하게 사용하는 함수형 언어
property(프로퍼티) : 객체 안의 변수
method(메소드) : 객체 안의 함수
#사용예제
function Person(name){
this.name = name;
this.introduce = function(){
return 'My name is '+this.name;
}
}
var p1 = new Person('keynene');
console.log(p1.introduce()+'\n');
var p2 = new Person('Noi');
console.log(p2.introduce()+'\n');