good this question when used with bind

PHOTO EMBED

Thu Aug 18 2022 00:25:27 GMT+0000 (Coordinated Universal Time)

Saved by @vnmshenoy

var everything ={
  answer:24,
  write:function(){
      console.log(this);
      console.log(this.answer);
  }
}
var nothing={
    answer:42,
    write:function(){
        console.log(this);
        console.log(44)
    }
}
var something=everything.write.bind(nothing);
something();
content_copyCOPY