JSON 객체에 키(key)와 값(value)를 추가하고 삭제하는 방법
var json = {NAME: "John", AGE: 30, SEX: "male"};
//add item (key, value)
json.BIRTHDAY = '2001-03-01';
//delete item (key)
delete json.SEX;
결과 (Result) :
add item : json {NAME: "John", AGE: 30, SEX: "male", BIRTHDAY: "2001-03-01"} |