JSFiddle - React, Tailwind, and code Playground

by secretgspot

HTML

<div id="console"></div>

JavaScript

var MyMath = (function(){
 
    // Put your private variables and functions here
    var crazy = 3;
 
    return { // Here are the public methods
        add:function(a, b){
            return a + b - crazy;
        }
    };
})();
 
$("#console").html(MyMath.add(1, 2));