From 376995c67921660df5e3f6b4fe77b4ae206986b2 Mon Sep 17 00:00:00 2001 From: Shivsingh15 <167164485+Shivsingh15@users.noreply.github.com> Date: Mon, 24 Feb 2025 18:19:01 +0530 Subject: [PATCH 1/2] About Asynchronous JS Signed-off-by: Shivsingh15 <167164485+Shivsingh15@users.noreply.github.com> --- .../how-much-javascript-do-you-need-to-know-to-use-nodejs.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/site/pages/en/learn/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md b/apps/site/pages/en/learn/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md index a04415c5713c6..979858361870b 100644 --- a/apps/site/pages/en/learn/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md +++ b/apps/site/pages/en/learn/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md @@ -24,11 +24,13 @@ As a beginner, it's hard to get to a point where you are confident enough in you - [Template Literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) - [Strict Mode](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode) - [ECMAScript 2015 (ES6) and beyond](/learn/getting-started/ecmascript-2015-es6-and-beyond) +- [Asynchronous JavaScript](/https://developer.mozilla.org/en-US/docs/Learn_web_development/Extensions/Async_JS) With those concepts in mind, you are well on your road to become a proficient JavaScript developer, in both the browser and in Node.js. #### Asynchronous Programming + The following concepts are also key to understand asynchronous programming, which is one of the fundamental parts of Node.js: - [Asynchronous programming and callbacks](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Asynchronous/Introducing) From fb6972d2976152909abd93f01a843cc3ff1c5515 Mon Sep 17 00:00:00 2001 From: Shivsingh15 <167164485+Shivsingh15@users.noreply.github.com> Date: Thu, 20 Mar 2025 11:04:42 +0530 Subject: [PATCH 2/2] remove extra space and back Slash from the Async Link Signed-off-by: Shivsingh15 <167164485+Shivsingh15@users.noreply.github.com> --- .../how-much-javascript-do-you-need-to-know-to-use-nodejs.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/site/pages/en/learn/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md b/apps/site/pages/en/learn/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md index 979858361870b..c74b408ba71a2 100644 --- a/apps/site/pages/en/learn/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md +++ b/apps/site/pages/en/learn/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md @@ -24,13 +24,12 @@ As a beginner, it's hard to get to a point where you are confident enough in you - [Template Literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) - [Strict Mode](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode) - [ECMAScript 2015 (ES6) and beyond](/learn/getting-started/ecmascript-2015-es6-and-beyond) -- [Asynchronous JavaScript](/https://developer.mozilla.org/en-US/docs/Learn_web_development/Extensions/Async_JS) +- [Asynchronous JavaScript](https://developer.mozilla.org/en-US/docs/Learn_web_development/Extensions/Async_JS) With those concepts in mind, you are well on your road to become a proficient JavaScript developer, in both the browser and in Node.js. #### Asynchronous Programming - The following concepts are also key to understand asynchronous programming, which is one of the fundamental parts of Node.js: - [Asynchronous programming and callbacks](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Asynchronous/Introducing)