Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sandysanthosh/json


https://github.com/sandysanthosh/json

ajax json

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# JSON

->json local storage:

Json Visualization;

https://jsoncrack.com/

->array:

var names=["santhosh","ranjith","yogi","rahul"];

->local storage set key and value pair:
->stringify:

localstorage.setItem("belgian",Json.stringify(names));

->To retrieve we need to pass only key value:

var movies=localstorage.getItem("belgian");

->TO test this:

alert(movies);