Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 13:51
Show Gist options
  • Save seogi1004/d93de97278f9f435215151819ece058b to your computer and use it in GitHub Desktop.
Save seogi1004/d93de97278f9f435215151819ece058b to your computer and use it in GitHub Desktop.
var Test = function() {
console.log(this);
this.print = function() {
alert("this.print");
};
};
// 함수 호출
Test();
// 인스턴스 생성
var ttt = new Test();
console.log(ttt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment