Working of methods

Syncronized method and block method are different or not

Do you mean syncronized or synchronous? I googled syncronized methods and they seem to refer to Java which is not the same as JavaScript. And according to what I could see online, JavaScript does not have syncronized methods. (Could be wrong, of course).

Synchronous methods are often referred to as blocking, as no other code will execute until the function returns. Likewise, asynchronous can also be called non-blocking.

2 Likes

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.