Skip to content

Instantly share code, notes, and snippets.

@sangwin
Created July 18, 2022 09:10
Show Gist options
  • Save sangwin/5183d5c5c3cf1d572d31bfe8d713e5c0 to your computer and use it in GitHub Desktop.
Save sangwin/5183d5c5c3cf1d572d31bfe8d713e5c0 to your computer and use it in GitHub Desktop.
Copy a text to clipboard
const copyToClipboard = (text) => navigator.clipboard?.writeText && navigator.clipboard.writeText(text);
copyToClipboard("Hello World!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment