Concept Flow - Element reference bindings (bind:this)
Component renders HTML element
Svelte assigns element to variable via bind:this
Variable holds reference to DOM element
Use variable to access or manipulate element
Event or action triggers DOM manipulation
Update reflected in UI
Svelte creates the element, then assigns it to a variable using bind:this, letting you access the element directly in your code.