0 votes
in NodeJS Essentials by

Which of the following is used to manage asynchronous operations in Node.js?

A) callbacks

B) promises

C) async/await

D) all of the above

1 Answer

0 votes
by

Answer: D

Explanation: Callbacks, promises, and async/await are all used to manage asynchronous operations in Node.js.

...