I have an item called result, where result is a .JSON object:
{
"id": "1345",
"day": "Tuesday",
"title": "Economics210"
}
Is there a way to save this to a .json file in Javascript without var fs = require('fs')
(Node)? This is all I see on the S.O. questions so far.
Perhaps by converting to text, then .json? Any ideas?