Say I have a javascript object that looks like this :
var data = {
name: "cliff",
age: "34"
}
var jsonData = JSON.stringify(data);
I stringify it to convert to JSON. How do I save this JSON to a local text file so I can open it, say, in Notepad etc.