0 votes
in NodeJS Essentials by

Which of the following is used to parse JSON data in Node.js?

A) JSON.stringify()

B) JSON.parse()

C) JSON.encode()

D) JSON.decode()

1 Answer

0 votes
by

Answer: B

Explanation: The JSON.parse() method is used to parse JSON data in Node.js.

...