this rule in js:medium code example
Example 1: this keyword in javascript medium
For All Regular function, this points to the WINDOW Object ( Global Context ) .
Example 2: this rule in js:medium
bar.bind(this)();
For All Regular function, this points to the WINDOW Object ( Global Context ) .
bar.bind(this)();