블로그
- Java 데이터 직렬화 역직렬화 핵심 요약 직렬화(Serialization)는 Java의 객체(Object)를 "저장하거나 전송할 수 있는 형태"로 바꾸는 것입니다. implements Serializable { private static final long serialVersionUID = 1L; private String name; private int age
- 자바스크립트 문법-object shorthand assignment 자바스크립트 문법(object shorthand assignment) 위의 문장을 짦게 사용할 수 있다. (단) Key와 valu 값이 일치할 경우 줄여서 사용할 수 있다. Destruturing(구조분할할당) 위에 문장을 짧게 쓰려면 spread (객체를 복사해서 그대로 가져온다) 결과값 {name: 'John', age: 30} 삼항연산자 출력 출력
- [JSON]parse() : browser receive data from Web Server with Object Parse the data with JSON.parse(), and the data becomes a JavaScript object. ":"New York"}'Use the JavaScript function JSON.parse() to convert text into a JavaScript object: var
- [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