💲

バニラなjsで$を使う

2020/09/21に公開

やりたいこと

バニラなJS書いてる時にいちいちgetElementByIdとか書くのめんどくさいからjQueryライクに$使いたい

やりかた

let $ = (selector) => document.querySelector(selector)

参考

Document.querySelector() - Web API|MDN

Discussion