JSFiddle - React, Tailwind, and code Playground
HTML
<input type="button" onclick="something(013)" />
JavaScript
function something(id){
alert(id);
}
<input type="button" onclick="something(013)" />
function something(id){
alert(id);
}