JSFiddle - React, Tailwind, and code Playground

by jakelauer

JavaScript

var log = function(message, logType){
	switch(logType){
        case 1: 
            console.log(message);
            break;
        case 2:
            console.warn(message)
            break;
    };
};

log("This is a normal log", 1);
log("This is a warning!", 2);