JSFiddle - React, Tailwind, and code Playground
by slace
JavaScript
function a() {
console.log(this);
}
a();
a.call(1);
a.call({ hello: 'teched' });
by slace
function a() {
console.log(this);
}
a();
a.call(1);
a.call({ hello: 'teched' });