1. json 데이터의 일반 값: json[i].fieldName
2. json 데이터의 필드에는 공백이 있습니다: eval('json[' i ']["' field '"]')
3. json 데이터 할당: eval('json[' i ']["' field '"]=' jsonFilter.length)
4. 모든 데이터, json[i].newField=defaultValue
5. json 데이터 정렬: 배열 정렬과 동일 json.sort(function (a, b) { return a[name] > b [ name] ? 1 : -1 });
6. json 데이터 복사: var newObject = jQuery.extend(true, {}, oldObject) 참조: jQuery의 json 객체 복사 및 객체)
7. json 배열 추가 및 삭제: concat 메서드 | pop 메서드 | reverse 메서드 | toLocaleString 메서드 | toString 메소드 | valueOf 메소드
8. json 배열 생성 예: var jsonArr=[]; jsonArr.push( item); 그러면 id와 value라는 두 개의 필드가 있는 json 배열이 생성되고 배열에 레코드가 추가됩니다.