Created
May 19, 2018 17:29
-
-
Save khg0712/c404b279789a3c8d55c8dbc7bbbdfd8d to your computer and use it in GitHub Desktop.
apply 메서드 예시
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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