Skip to content

Instantly share code, notes, and snippets.

@nithesh1992
Forked from sayyedhammadali/copy-to-clipboard.txt
Created October 8, 2021 06:20
Show Gist options
  • Save nithesh1992/ea5f38fe4a5a9bd4571f281b8311bcc8 to your computer and use it in GitHub Desktop.
Save nithesh1992/ea5f38fe4a5a9bd4571f281b8311bcc8 to your computer and use it in GitHub Desktop.
Copy to Clipboard
const copyToClipboard = (text) => navigator.clipboard.writeText(text);
copyToClipboard("This Sring is Copied To Clipboard.");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment