Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Web Technology by (7k points)

How can I convert a Javascript object into a string?

1 Answer

0 votes
by (13.1k points)

Use JSON.stringify, which converts the set of variables in the object to a JSON string.

var obj={

name=”object”;

};

JSON.stringify(obj);

Want to be full stack developer? Check out the full stack developer course from Intellipaat. 

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Mar 15, 2021 in Java by dante07 (13.1k points)
0 votes
0 answers
0 votes
1 answer
asked Feb 15, 2021 in Web Technology by Jake (7k points)

Browse Categories

...