JSFiddle - React, Tailwind, and code Playground

by liggth

JavaScript

let foo = 0, result;

  result = foo !== null && foo !== undefined ? "Правда" : "Лоб";
  
  console.log(result);
  
  
  result = foo ? 1 : 2;
  
  console.log(result);