JSFiddle - React, Tailwind, and code Playground

by totoromaum

JavaScript

//The price of the Lego Set
var price = 100.00;
//The Amount Of Money That I Have
var money = 100.50;
if (money >= price) {
  console.log("YES, I can buy this AWESOME Lego Set")
} else {
  console.log("Darn IT!!!!  ): I can't buy this AWESOME lego Set")
};