Svelte Lifecycle Method - onMount
In Svelte, a component's  onMount  lifecycle method  is called  after  the  first time  the component has been rendered to the DOM. For example, if you have a component that is wrapped within an  {# if}  block, then when this block's conditional statement is fulfilled, the component will be mounted to the DOM, at which point  onMount  will be called. Being able to schedule a callback to run at this phase of a component's lifecycle ensures that DOM elements within the component will be available for your code to access/manipulate. Here's a template of how the  onMount  lifecycle method is used inside of a component: Considered the most commonly used lifecycle method,  onMount  covers a wide diversity of use cases such as...