https://svelte.dev/repl/44e3aece18294ddb834bcdfb4394af48?ver...
` <script>
let name = 'world'; const flip = () => name = name === name.toUpperCase() ? name.toLowerCase() : name.toUpperCase() $: console.log({ name })
<h1>Hello {name}!</h1>
<button on:click={flip}>flip!</button> `
https://svelte.dev/repl/44e3aece18294ddb834bcdfb4394af48?ver...
` <script>
</script><h1>Hello {name}!</h1>
<button on:click={flip}>flip!</button> `