Replies: 3 comments
-
<모던 자바스크립트 Deep Dive>키워드
Q1. as const와 Object.freeze 메서드의 차이는 무엇인가요? const person = {
firstName: 'Ungmo',
lastName: 'Lee',
get fullName() {
return `${this.firstName} ${this.lastName}`;
},
set fullName(name) {
[this.firstName, this.lastName] = name.split(' ');
}
};<우아한 타입스크립트>키워드
Q1. API 모킹을 사용하는 이유는 무엇인가요? |
Beta Was this translation helpful? Give feedback.
-
|
<모던 자바스크립트 Deep Dive> 프로퍼티 어트리뷰트 <우아한 타입스크립트> JSON 파일 불러오기 Q1. 라이브러리를 사용하여 api모킹을 했을 때 장점은 무엇일까요? |
Beta Was this translation helpful? Give feedback.
-
[모던 자바스크립트 Deep Dive]키워드프로퍼티 어트리뷰트 (객체 내부 동작 원리 관련) Q1. Object.freeze()와 Object.seal()의 차이는 무엇인가요? 각각 어떤 상황에서 사용하는 것이 적절하다고 생각하나요? [우아한 타입스크립트]키워드API 모킹 (프론트엔드 개발 실무에서의 목업 처리) Q1. 목업 서버와 실제 API 서버 간의 전환을 자동화하려면 어떤 방식이 가장 효과적이라고 생각하나요? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
[9주차] 키워드 및 질문
[모던 자바스크립트 Deep Dive]
<16장 프로퍼티 어트리뷰트>
[우아한 타입스크립트]
<7.4장 API 모킹>
Beta Was this translation helpful? Give feedback.
All reactions