Skip to Content
For Enterprise
For Government
For Higher Ed
For Individuals
For Marketing
For Enterprise
For Government
For Higher Ed
For Individuals
For Marketing
Explore Skills
Cloud Computing
Microsoft Azure
Amazon Web Services (AWS)
Google Cloud
Cloud Migration
Cloud Deployment
Cloud Platforms
Data Engineering
Data Warehouse
SQL
Apache Spark
Microsoft SQL Server
MySQL
Kafka
Data Lake
Streaming & Messaging
NoSQL Databases
Relational Databases
Data Science
Pandas
R
MATLAB
SAS
D3
Power BI
Tableau
Statistics
Exploratory Data Analysis
Data Visualization
AI & ML
Generative AI
Machine Learning
Artificial Intelligence (AI)
Deep Learning
Reinforcement Learning
Natural Language Processing
TensorFlow
Scikit-Learn
Hyperparameter Tuning
MLOps
Programming Languages
Java
JavaScript
Spring
Python
Go
C#
C++
C
Swift
Rust
Functional Programming
Software Architecture
Object-Oriented
Distributed Systems
Domain-Driven Design
Architectural Patterns
IT/Ops
Kubernetes
Docker
GitHub
Terraform
Continuous Delivery
Continuous Integration
Database Administration
Computer Networking
Operating Systems
IT Certifications
Security
Network Security
Application Security
Incident Response
Zero Trust Model
Disaster Recovery
Penetration Testing / Ethical Hacking
Governance
Malware
Security Architecture
Security Engineering
Security Certifications
Design
Web Design
Graphic Design
Interaction Design
Film & Video
User Experience (UX)
Design Process
Design Tools
Business
Agile
Project Management
Product Management
Marketing
Human Resources
Finance
Team Management
Business Strategy
Digital Transformation
Organizational Leadership
Soft Skills
Professional Communication
Emotional Intelligence
Presentation Skills
Innovation
Critical Thinking
Public Speaking
Collaboration
Personal Productivity
Confidence / Motivation
Features
All features
Verifiable skills
AI Academy
Courses
Certifications
Interactive learning
Live events
Superstreams
Answers
Insights reporting
Radar Blog
Buy Courses
Plans
Sign In
Try Now
O'Reilly Platform
book
자바스크립트 + 리액트 디자인 패턴
by
애디 오스마니(Addy Osmani)
,
윤창식
August 2024
Beginner to intermediate
384 pages
7h 38m
Korean
Hanbit Media, Inc.
Content preview from
자바스크립트 + 리액트 디자인 패턴
222
자바스크립트 + 리액트 디자인 패턴
9.5.4
여러 비동기 함수를 한 번에 실행하기
async function main() {
try {
const [data1, data2] = await Promise.all([
makeRequest1(),
makeRequest2()
]);
console.log(data1, data2);
} catch (error) {
console.error(error);
}
}
9.5.5
여러 비동기 함수를 순서대로 실행하기
async function main() {
try {
const data1 = await makeRequest1();
const data2 = await makeRequest2();
console.log(data1, data2);
} catch (error) {
console.error(error);
}
}
9.5.6
함수의 결과를 캐싱하기
const cache = new Map();
async function makeRequest(url) {
if (cache.has(url)) {
return cache.get(url);
}
try {
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial
You might also like
AI를 위한 필수 수학
할라 넬슨
개발자를 위한 커리어 관리 핸드북
마이클 롭
클라우드 엔지니어를 위한 97가지 조언
Emily Freeman, Nathen Harvey, 정기훈(Jung Ki Hun)
만들면서 배우는 프로그레시브 웹 앱: 사용자 경험을 극대화하는 차세대 웹 앱 기술
한민주, 양찬석, 탈 아터
Publisher Resources
ISBN: 9791169212571