Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 19, 2018 17:29
Show Gist options
  • Save khg0712/c404b279789a3c8d55c8dbc7bbbdfd8d to your computer and use it in GitHub Desktop.
Save khg0712/c404b279789a3c8d55c8dbc7bbbdfd8d to your computer and use it in GitHub Desktop.
apply 메서드 예시
function animal(name){
this.name = name;
}
var dog = {};
animal.apply(dog,['James']);//animal.call(dog,'James'); 와 같다.
console.dir(dog);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment