JSFiddle - React, Tailwind, and code Playground
HTML
<div id="#test"></div>
<div id="#test2"></div>
JavaScript
const container = document.getElementById("#test");
const container2 = document.getElementById("#test2");
const a = "idi nahooy";
const b = "petuh";
container.innerHTML = a + b !== 'petuh' ? b : 'ты петух ебаный';
container2.innerHTML = a + b === 'petuh' ? b : 'ты петух ебаный';