`this` keyword question: `myObject.iife()` should be `myObject.iife`
kscooo opened this issue · 4 comments
kscooo commented
skatcat31 commented
iife
stands for immediately-invoked function expression
and is the format of that functional call:
let a = ( function(){ return 1 } )()
a === 1 // true
skatcat31 commented
If it's still unclear feel free to ask for more information.
kscooo commented
atomiks commented
Yes, it should be myObject.iife
without calling it as a function. Feel free to make a PR for this.