JSFiddle - React, Tailwind, and code Playground

by btipling

JavaScript

(function () {
    "use strict";
    const foo = "bar";
    switch (foo) {
        case "bar":
            const bar = "foo";
            console.log("bar is", bar);
            break;
        default:
            console.log("nope");
            break;
    }
}());