JSFiddle - React, Tailwind, and code Playground
by yaero
JavaScript
function foo(a, b, c) {
console.log('x', a, b, c);
}
var _foo = foo.bind(null, 1);
_foo(2, 3);
by yaero
function foo(a, b, c) {
console.log('x', a, b, c);
}
var _foo = foo.bind(null, 1);
_foo(2, 3);