Assignments are 'reactive' Svelte์ ๋ฐ์์ฑ์ ํ ๋น์ ๊ธฐ๋ฐ์ผ๋ก ํจ. .push() ์ .splice()๋ ์๋์ผ๋ก ์ ๋ฐ์ดํธ๋ฅผ triggerํ์ง ์์. -> ํ์ ํ ๋น ํ์ let arr = [0, 1]; function handleClick() { arr.push(2); arr = arr; // subsequent assignment } Svelte์ <script> ๋ธ๋ก์ component๊ฐ create ๋ ๋๋ง ์คํ. prop๊ฐ ์ ๋ฐ์ดํธ๋ ๋ ์๋์ผ๋ก ๋ค์ ์คํ๋์ง ์์ $ statement๋ฅผ ๋ฐ์ํ์ผ๋ก ๋ง๋๋ JS label syntax ๊ฐ์ด ๋ณ๊ฒฝ๋ ๋ compoment markup์ด render๋๊ธฐ ์ ์ ์คํ export let title; $: document.title = title;