JSFiddle - React, Tailwind, and code Playground

by helgatheviking

JavaScript

var objA = {
	decimal_sep:  'TEST',
  thousands_sep: 'thousand'
};

var objB = {
	decimal_sep: 'TACOS',
}

var combined = {...objA, ...objB};

console.debug(combined);

var args = true;

console.debug( Boolean(args) );