JSFiddle - React, Tailwind, and code Playground

by Serhii Matrunchyk

HTML

<script src="https://unpkg.com/[email protected]"></script>

JavaScript

var element = document.createElement('div');
document.body.appendChild(element);

_.setWith(element, 'ethnicities[0]', {
  'value': 1,
  'text': 'Bla'
}, (_, prop, el) => {
  if (prop && el) {
     el.setAttribute(prop, el[prop]);
  }
})


console.log(element);