Skip to content

Instantly share code, notes, and snippets.

@arturparkhisenko
Created November 7, 2016 19:41
Show Gist options
  • Save arturparkhisenko/9cbf172dd73fce7c16f55647a60d6bdf to your computer and use it in GitHub Desktop.
Save arturparkhisenko/9cbf172dd73fce7c16f55647a60d6bdf to your computer and use it in GitHub Desktop.
js-css-modern-node-set-props
// https://twitter.com/forwebdev/status/795342853295734784
const p = document.querySelector('p');
// old method
p.style.margin = '1rem';
p.style.color = 'green';
// new method
Object.assign(p.style, {
margin: '1rem',
color: 'red'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment