Skip to content

Instantly share code, notes, and snippets.

@kamilklkn
Created January 26, 2021 23:03
Show Gist options
  • Save kamilklkn/bcd4c3dded8d84731115d3b7fbc00582 to your computer and use it in GitHub Desktop.
Save kamilklkn/bcd4c3dded8d84731115d3b7fbc00582 to your computer and use it in GitHub Desktop.
A.Ş. elemente sınıfı atar
const setStyle = (el, rule, val) => (el.style[rule] = val);
//ÖRNEKLER
setStyle(document.querySelector('p'), 'font-size', '20px');
// The first <p> element on the page will have a font-size of 20px
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment