LoginSignup
4
1

More than 5 years have passed since last update.

applyとcallとbindのまとめ

Last updated at Posted at 2017-02-04

忘れた時用

メソッド 脳内変換前 脳内変換後
call methodA.call(obj, a, b, c); obj.methodA(a, b, c);
apply methodA.apply(obj, [a, b, c]); obj.methodA(a, b, c);
bind methodA.bind(obj, a, b, c); function(a, b, c) { obj.methodA(a, b, c); }
4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1