If you use node.js and ejs and render JavaScript object to ejs, the resultant HTML page has the following syntax:
[object Object]
despite the fact that my object is as follows:
[{"a": 3, "b": 10}, {"c":3, "d":20}, {"e":1, "f":55}]
However, I want to render the object itself (object literal if I understand it correctly), not the useless [object Object]
.
So how can I render it properly? res.render("index", {result: listOfObject.valueOf()})
didn't work.