JSFiddle - React, Tailwind, and code Playground

JavaScript

function greet(person) {
    var name = person || 'anonymouse';
    alert('Hello ' + name);
}
greet('jashwant');
greet();