블로그
- JSONC : JSON 파일에 주석 사용하기 개요 JSON(JavaScript Object Notation)은 데이터 교환 포맷으로 가장 널리 사용되는 형식 중 하나다. 이를 보완하기 위해 등장한 것이 JSONC(JSON with Comments) 확장자를 가지는 파일이다.
- [React 만들어보기 02] React는 무엇을 해결하고 싶었는가? React is a JavaScript library for building user interfaces. React는 사용자 인터페이스를 구축하기 위한 JavaScript 라이브러리.......
- [JSON]Introduction JSON is text, written with JavaScript object notation. This way we can work with the data as JavaScript objects, with no complicated parsing and translations
- [JSON]stringify() : browser sends data to Web Server with String Convert a JavaScript object into a string with JSON.stringify(). Stringify a JavaScript ObjectImagine we have this object in JavaScript: var obj = { "name":"John", "age
- [JSON]parse() : browser receive data from Web Server with Object Parse the data with JSON.parse(), and the data becomes a JavaScript object. function JSON.parse() to convert text into a JavaScript object: var obj = JSON.parse('{ "name":"John
- JavaScript Date Object Reference Date object is used to work with dates and times. Date objects are created with new Date().