JSFiddle - React, Tailwind, and code Playground
by Sahin Deniz
HTML
<input type="button" value="dene">
JavaScript 1.7
let a1 = "test";
$("input").click(handler.apply(a1));
function handler(a,b,c,d,e){
console.log(a,b,c,d,e);
}
by Sahin Deniz
<input type="button" value="dene">
let a1 = "test";
$("input").click(handler.apply(a1));
function handler(a,b,c,d,e){
console.log(a,b,c,d,e);
}