JSFiddle - React, Tailwind, and code Playground

JavaScript

var one = { two: false };
//var one = { two: { three: "yay!" } };

var $a, $b, $c;
var result = ($a = one, $b = $a ? $a.two : void 0, $b ? $b.three : void 0);

alert(result);