검색결과 리스트
글
//생성자 함수 선언
function Student(name) {this.name=name;}
//변수를 선언
var student = new Student('유인성');
//출력
alert(student instanceof Student);
alert(student instanceof Number);
alert(student instanceof String);
alert(student instanceof Boolean);
새로생성된게 name밖에 없으니까 처음뜨는 alert 만 true 출력
새로생성된게 name밖에 없으니까 처음뜨는 alert 만 true 출력
'Javascript&Jquery' 카테고리의 다른 글
캡슐화를 사용한 Rectangle 생성자 함수 (0) | 2012.01.23 |
---|---|
생성자함수 Rectangle 선언 (0) | 2012.01.23 |
prototype을 사용한 메서드 생성 (0) | 2012.01.23 |
생성자 함수_new를 이용한 객체생성 (0) | 2012.01.23 |
함수를 이용한 객체생성_학생별총점,평균 (0) | 2012.01.23 |