요약 정리
JSON
haedal-uni
2021. 12. 15. 00:37
728x90
JavaScript Object Notation
json이라는 것은 javascript에서 쓰는 dictionary 같은 것이다. 라고 알면 된다.
자바스크립트 딕셔너리 예시
let course = {
'title': '웹개발의 봄, Spring',
'tutor': '남병관'
};
console.log(course);
딕셔너리는 key와 value로 구성 (key : value)
728x90