JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

function setElementSize({
  width = 100, 
  height = width * 2, 
  units = '%', 
  selector = '.root' 
} = {}) {  
  console.log('width:', width);
  console.log('height:', height);
  console.log('units:', units);
  console.log('selector:', selector);
}

setElementSize({units: 'px', selector: 'root'});