JavaScript tips you won't see in most tutorials.

3. Run event listener only once
If you want to add an event listener but have it run only once, you can use the ` once` option:
If you want to add an event listener but have it run only once, you can use the ` once` option:
5. Get min/max value from an array
You can use `Math.min()` or `Math.max()` combined with the spread operator to find the minimum or maximum value in an array.
You can use `Math.min()` or `Math.max()` combined with the spread operator to find the minimum or maximum value in an array.
6. Copy to clipboard
You can use the `Clipboard` API to create the “Copy to clipboard” functionality:
You can use the `Clipboard` API to create the “Copy to clipboard” functionality:
If you liked this thread, maybe you'd love to bookmark it as a post.
P.S. You can find a few more tips there. https://markodenic.com/javascript-tips/
P.S. You can find a few more tips there. https://markodenic.com/javascript-tips/