JavaScript ES6+ 주요 기능
Published on Jan 12, 2026 • 2 min read • Category: Tailwind CSS
TAILWIND CSS
LINUX
JavaScript ES6+ 주요 기능
ES6 이후 JavaScript에 추가된 주요 기능들을 살펴보겠습니다.
화살표 함수
const add = (a, b) => a + b;
템플릿 리터럴
const name = "World";
const greeting = `Hello, ${name}!`;
구조 분해 할당
const { name, age } = person;
auto_awesome auto_awesome Related Content
View All Posts arrow_forward
forum
Join the Discussion
Leave a comment or share your thoughts on this article.