Skip to content

Instantly share code, notes, and snippets.

@fakefarm
Last active August 29, 2015 14:05
Show Gist options
  • Save fakefarm/517af3643a7cc58c0bbe to your computer and use it in GitHub Desktop.
Save fakefarm/517af3643a7cc58c0bbe to your computer and use it in GitHub Desktop.
onjson

JSON

The two methods to conver data.

JSON.stringify JSON.parse

var user = JSON.stringify({name: 'dave', age: 1977, occupation: 'developer'});
user;
=> {"name":"dave","age":1977,"occupation":"developer"}

var name = JSON.parse(user).name
name;
=> dave
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment