JSFiddle - React, Tailwind, and code Playground

HTML

<div id="hero">
    <div></div>
</div>

CSS

#hero{
    background-color: #f00;
    width: 20px;
    height: 20px;
}

JavaScript

function doe_iets_met(mijn_variabele)
{
    mijn_variabele=mijn_variabele+1;
    return mijn_variabele;
}
var a;
var b;
a=doe_iets_met(3);
b=doe_iets_met(7);


console.log("------------");
console.log("de waarde van a = "+ a);