JSFiddle - React, Tailwind, and code Playground

by Stas Orekhovskiy

JavaScript

<script type="text/javascript">
    var a = prompt('test','');
    function min(a, b){
        if(a < b){
            return a;
        }else{
            return b;
        }
    };
</script>