기술면접_JavaScript_11_13
## 프론트엔드 개발자 입문(비동기처리) | Callback,Promise,Async,Await ### Contents 1...
HTTP(Hypertext Transfer Protocol)
JSON(JavaScript Object Notation)
Object to JSON(오브젝트를 JSON파일로 변환)
//stringfy(obj)
const rabbit = {
name: 'tori',
color: 'white',
size: null,
brithDate: new Date(),
jump: () => {
console.log(`${name} can jump!`)
}
}
json = JSON.stringify(rabbit);
console.log(json)
//stringfy(obj): 콜백함수를 사용하여 위 코드 대비 변환을 통제하는 경우
json = JSON.stringify(rabbit, ["name"]); //rabbit obj의 특정 Property만 변환하고자 하는 경우 사용
json = JSON.stringify(rabbit, (key, value) => { //rabbit obj의 특정 Property의 값을 변경하여 변환하고자 하는 경우 사용
return key == 'name' ? 'ellie' : value;
});
JSON관련 사이트
Avenco comes with a built-in contact form.