简体   繁体   中英

Does internet speed afect browser JavaScript?

I wanted to know if browser speed affects the execution time of JavaScript code. For example, if I have this code

for (let i = 0; i <= 100; i++){
   console.log(i)
}

Does it mean that someone with a 4G connection will get this code executed earlier than someone with a 2G connection

No, as I understand it, Java Script is run in your browser and your browser have engine to run java script.

Only thing that connection speed can affect is request/response cycle; download of files sent from server.... (html, css, js files...)

Hope this explanation helps?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM