JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" onclick="trackIt(2)"> Integer - works</a>
<a href="#" onclick="trackIt('This works!')"> Encapsulated String - Works </a><br>
<a href="#" onclick="trackIt(this doesnt work)"> Unencapsulated String - Doesnt' work </a>
JavaScript
function trackIt(param){console.log(param)};