Skip to content

Instantly share code, notes, and snippets.

@springcome
Created October 18, 2013 02:27
Show Gist options
  • Save springcome/7035595 to your computer and use it in GitHub Desktop.
Save springcome/7035595 to your computer and use it in GitHub Desktop.
json, jquery
// json객체를 문자열로 변환
$.toJSON(object);
// json배열을 만들어 데이터 넣기
var jsonArr = {'info':[]};
jsonArr.info.push(
{'name':'kim'},
{'age':26}
);
jsonArr.info.push(
{'name':'lee'},
{'age':40}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment