0 votes
in NodeJS Essentials by
Which of the following is used to send HTTP requests in Node.js?

A) http.request()

B) http.get()

C) http.send()

D) http.fetch()

1 Answer

0 votes
by

Answer: A

Explanation: The http.request() method is used to send HTTP requests in Node.js.

...