- 크롬 브라우저 우측 상단 옵션 선택
- 도구 더보기
- 인터넷 사용기록 삭제
Clear the cache in JavaScript
Here's a snippet of what I'm using for my latest project. From the controller: if ( IS_DEV ) { $this->view->cacheBust = microtime(true); } else { $this->view->cacheBust = file_exists($versionFile) // The version file exists, encode it ?
https://stackoverflow.com/questions/1011605/clear-the-cache-in-javascript
Clear cache & cookies
When you use a browser, like Chrome, it saves some information from websites in its cache and cookies. Clearing them fixes certain problems, like loading or formatting issues on sites. On your computer, open Chrome. At the top right, click More . Click More tools Clear browsing data.
https://support.google.com/accounts/answer/32050?co=GENIE.Platform%3DDesktop&hl=en

Seonglae Cho