Passing parameters to Svelte function

In Svelte we can define functions that are going to be called when an event is triggered. For example, to call holaMundo on the click of an element we can indicate it as on:click={holaMundo} Sometimes it is necessary to pass parameters to that function inside a Svelte component, but we cannot indicate it like this: […]

Passing parameters to Svelte function Read More »