> For the complete documentation index, see [llms.txt](https://leeboa.gitbook.io/study/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://leeboa.gitbook.io/study/undefined/evnet-handlers.md).

# evnet handlers

## evnet handlers

**이벤트는 웹사이트에서 발생하는 것들을 의미함**

```javascript
const title = document.querySelector("title");

function handle(){
 title.style.color = "blue"
}

title.addEventListener("click",hadle); // 클릭했을대 글자 색상이 변경
//이벤트 안에 다룰 함수를 넣어줌 
```
