I'm confusing between those two terms: (synchronously and asynchronously) in Javascript I searched a lot I found many sources talking about that but no source explains that obviously and easily.
the synchronous in English it's means something runs at the same time or simultaneously but unlike the asynchronously that doesn't run at the same time. so, from these two terms synchronous JS execute tasks that you want synchronously let's suppose two tasks at the same time I need it to work so I think the name of it is synchronous tasks, not asynchronous tasks, Is that right?
but when I read some sources I found that terms apply to asynchronous in JS and not synchronous terms.
so, I want to know the difference between synchronous and asynchronous in Javascript simply to understand and, where I should use both of them?