가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

Svelte.js 면접 질문과 답변

Ques 11. How can you pass data between parent and child components in Svelte?

Data can be passed from parent to child components in Svelte using props. The parent component can bind a variable to a child component property, ensuring updates are reflected in the child.

도움이 되었나요? Add Comment View Comments
 

Ques 12. Explain the purpose of the 'await' block in Svelte.

The 'await' block in Svelte is used for asynchronous logic. It allows you to await a Promise and handle the resolved value or catch errors within the template.

도움이 되었나요? Add Comment View Comments
 

Ques 13. What are Svelte transitions, and how do you use them?

Svelte transitions enable smooth animations during element insertion, removal, or state changes. You can use 'in:' and 'out:' directives to specify transition effects.

도움이 되었나요? Add Comment View Comments
 

Ques 14. How does Svelte handle global CSS styles?

Svelte allows you to include global CSS styles using the 'global' keyword. Styles defined with 'global' apply globally across all components.

도움이 되었나요? Add Comment View Comments
 

Ques 15. Explain the role of the 'key' attribute in Svelte's each block.

The 'key' attribute in Svelte's each block is used to uniquely identify elements during iteration. It helps Svelte efficiently update the DOM when the list changes.

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.