JSFiddle - React, Tailwind, and code Playground
JavaScript
console.log("Truthy or Falsy values in javascript");
console.log("not false and not true",!false,!true);
console.log("not string",!"Some String");
console.log("not null or not undefined",!null, !undefined, !NaN);