728x90
반응형
const $button=docu~
const $elem=docu~
변수 앞에 $이게 붙어있는 경우를 종종 볼 수 있고 jQuery가 아니여서 뭔지 찾아봤다
https://www.thoughtco.com/and-in-javascript-2037515
What's In a Name? Understanding $ and _ in JavaScript
The $ and _ characters in JavaScript are identifiers that are considered to be letters rather than special characters.
www.thoughtco.com
_(언더바)는 private를 나타낼때 쓰는 식별자이고 $도 마찬가지로 식별자다
$은 document.getElementById()의 줄임말
개발자들의 관례
function $(x) {return document.getElementById(x);}
<div id="noo">HI</div>
const hi=$(noo)
728x90
반응형
'JavaScript' 카테고리의 다른 글
정렬 (0) | 2022.07.31 |
---|---|
Babel과 Webpack을 이용한 개발 환경 구축 (0) | 2022.07.12 |
제너레이터와 async/await (0) | 2022.07.12 |
프로미스 (1) | 2022.07.11 |
REST API (0) | 2022.07.11 |