JSFiddle - React, Tailwind, and code Playground

JavaScript

function getModByTwo( someNumber )
{
    var mod;
    mod = someNumber % 2;
    return mod;
}

document.write( getModByTwo( 14 ) );