JSFiddle - React, Tailwind, and code Playground
by roeburg
JavaScript
var foo = function() {
return true;
}; // semicolon here.
function foo() {
return true;
} // no semicolon here.
by roeburg
var foo = function() {
return true;
}; // semicolon here.
function foo() {
return true;
} // no semicolon here.