Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seogi1004/6ac8c2a7b20ac1d144504819ac1da9ee to your computer and use it in GitHub Desktop.
Save seogi1004/6ac8c2a7b20ac1d144504819ac1da9ee to your computer and use it in GitHub Desktop.
var Student = function(id, name) {
var id = id;
this.name = name;
}
var my = new Student("Seogi1004", "Moon-Hak-I");
alert(my.id + ", " + my.name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment