i new in javascript + nodejs
i want display array in javascript from nodejs..
this result from node.js (i use JSON.stringify())
[{"id":"i01","name":"jack","phone":"123123"},{"id":"i02","name":"john","phone":"123123"},{"id":"i03","name":"jane","phone":"123123"}]
i want display that array like this
id | name | phone
---+-------+----------i01 | jack |123123
i02 | john |123123
i03 | jane |123123
how can i achive what i want ?
thanks