Created
January 26, 2021 23:03
-
-
Save kamilklkn/bcd4c3dded8d84731115d3b7fbc00582 to your computer and use it in GitHub Desktop.
A.Ş. elemente sınıfı atar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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