TIL: Copying to the clipboard from a webpage is easy now
#til #webdev #javascript #clipboard
I remember a time when there were whole libraries dedicated to clipboard management.
Turns out in browsers released after ~2020 you can do it with one line:
navigator.clipboard.writeText(text).then(console.log).catch(console.error);