|
|
|
|
|
by nhpatt
3239 days ago
|
|
You are not calling the function, you are passing a reference to setTimeout that calls it directly, without the obj. before the call. @getify explains it flawlessly, there are 4 modes: new, obj., bind/apply/call and default (window or error in strict mode) |
|