JSFiddle - React, Tailwind, and code Playground

by infous

JavaScript

function amIRich(money) {
  if (money > 1000) {
    return 'You are rich!';
  } else {
    return 'The best is yet to come!';
  }
}

function getNothing() {
 return '';
}

var a = getNothing();
alert(a);

var result = amIRich(2000);
console.log(result);
alert(result);
document.querySelector('body').innerHTML = result;