JSFiddle - React, Tailwind, and code Playground

by WhetDawg

JavaScript

var u;
var n = null;

var s = u ?? 'xyz' == 'xyz' ? 'yes' : 'no';
var t = u ?? 'xyz' == 'xyz' ? 'yes' : 'no';

console.log(s);
console.log(t);

u = 'abc';
n = 'abc';

var s = u ?? 'xyz' == 'xyz' ? 'yes' : 'no';
var t = u ?? 'xyz' == 'xyz' ? 'yes' : 'no';

console.log(s);
console.log(t);

u = 'abc';
n = 'abc';

var s = (u ?? 'xyz') == 'xyz' ? 'yes' : 'no';
var t = (u ?? 'xyz') == 'xyz' ? 'yes' : 'no';

console.log(s);
console.log(t);