Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 238 Bytes

File metadata and controls

20 lines (12 loc) · 238 Bytes

importance: 5


Segundo enlace

¿Podemos cambiar this por un enlace adicional?

¿Cuál será el resultado?

function f() {
  alert(this.name);
}

f = f.bind( {name: "John"} ).bind( {name: "Ann" } );

f();