JSFiddle - React, Tailwind, and code Playground

JavaScript

function firstTimeCalled()
{
    alert('call me one time');
}
function test()
{
    this.called = this.called || firstTimeCalled() || true;    
}
test();
test();