JSFiddle - React, Tailwind, and code Playground
by magikMaker
JavaScript
function log(message){
message = message + ' >> '+ Array.prototype.slice.call(arguments, 1).join(', ');
console.log('do it:: ', message);
}
log('testing 1');
log('testing 2', 'another');