JSFiddle - React, Tailwind, and code Playground

by Jimmy Sawczuk

JavaScript

var options = { x1: false, x2: true };
var x1 = options.x1 || 0;
var x2 = options.x2 || 0;
var x3 = options.x3 || 0;

console.log(x1, x2, x3);