Search code examples
webdatasource

Downloading source on web


where are source documents downloading to when I start a site ? ram or disk ? like this

<script src="script.js"></script>

Solution

  • The external JavaScript files live on the server. When the browser requests them, the browser retrieves the file, downloads it in the client's hard disk, and then executes it locally.