funjs / book-source

The example source code for the book Functional JavaScript by Michael Fogus, published by O'Reilly
Other
349 stars 101 forks source link

example on chapter 2 #12

Closed a-eid closed 3 years ago

a-eid commented 7 years ago

that second example ( I think ) on chapter 2

var bFun = function(){ return this} var b = {name : 'b' , fun : bFun }

b.fun(); // returns b not the global window object .