JSFiddle - React, Tailwind, and code Playground
by evgkch
JavaScript
function test() {
console.log(this)
}
const obj = { a: 1 }
test.bind(obj)
test();
by evgkch
function test() {
console.log(this)
}
const obj = { a: 1 }
test.bind(obj)
test();