From b8d73b5815b05c04eaa788c746f0bfdebc4430c2 Mon Sep 17 00:00:00 2001 From: Moaz Sarwar Date: Fri, 15 May 2026 07:37:41 +0500 Subject: [PATCH 1/2] fixed the async issue --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 901297e..8f3ed1d 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ console.log(a); // undefined ### Synchronous Programming JavaScript is a synchronous programming language, meaning that it executes code line by line in the order it appears in the source code.Which means that it will execute one line of code at a time and move to next line after the execution of the first line. ### Asynchronous Programming -JavaScript is also capable of asynchronous programming, which allows code to run in parallel without blocking the main execution thread. This is achieved using asynchronous functions, callbacks, promises, and async/await. +JavaScript is also capable of asynchronous programming, which allows code to run in parallel without blocking the main execution thread. This is achieved using asynchronous functions, callbacks, promises, and async/await. It's use the browser resources to perform the async task. ```jsx console.log("Hello World") // this will be executed first From 523cd7ac5116e1ef87806640a57819e895549a72 Mon Sep 17 00:00:00 2001 From: Moaz Sarwar Date: Fri, 15 May 2026 07:42:03 +0500 Subject: [PATCH 2/2] resolved the issue --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f3ed1d..9b2981e 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ console.log(a); // undefined ### Synchronous Programming JavaScript is a synchronous programming language, meaning that it executes code line by line in the order it appears in the source code.Which means that it will execute one line of code at a time and move to next line after the execution of the first line. ### Asynchronous Programming -JavaScript is also capable of asynchronous programming, which allows code to run in parallel without blocking the main execution thread. This is achieved using asynchronous functions, callbacks, promises, and async/await. It's use the browser resources to perform the async task. +JavaScript is also capable of asynchronous programming, which allows code to run in parallel without blocking the main execution thread. This is achieved using asynchronous functions, callbacks, promises, and async/await. It's use the browser resources to perform the async task. So carefully use it. ```jsx console.log("Hello World") // this will be executed first