From 330651c14246a6bb68aba7e4ed24559550edcc45 Mon Sep 17 00:00:00 2001 From: Borut Piletic Date: Mon, 20 Apr 2026 22:01:19 +0200 Subject: [PATCH] Update link for asynchronous programming resources Signed-off-by: Borut Piletic --- .../how-much-javascript-do-you-need-to-know-to-use-nodejs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md b/pages/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md index e1c6ea2..f88521e 100644 --- a/pages/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md +++ b/pages/getting-started/how-much-javascript-do-you-need-to-know-to-use-nodejs.md @@ -30,7 +30,7 @@ With those concepts in mind, you are well on your road to become a proficient Ja 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/JavaScript/Asynchronous/Introducing) +- [Asynchronous programming and callbacks](https://developer.mozilla.org/en-US/docs/Learn_web_development/Extensions/Async_JS/Introducing) - [Timers](https://developer.mozilla.org/en-US/docs/Web/API/setTimeout) - [Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises) - [Async and Await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function)