```bash function f() { alert(this) // or console.log(this) in NodeJS environment } let user = { g: f.bind(null) } user.g() ``` I did not get null. The Global Object is still displayed. Window in the browser environment and NodeJs Global Object in NodeJS environment.