[JS]생성자 함수

J_Log·2023년 5월 11일
0

JavaScript

목록 보기
6/6

생성자 함수

function User(name, age){
	//this = {}	
    this.name = name;
    this.age = age;
    this.sayHi = function(){
    	console.log(`Hi, I'm ${this.name}.`);
    };
    
    //return this;
    }
    
    const me = new User('j', 24);
    
profile
공부합시다

0개의 댓글