Advertisement
deddyprianto

Copy to Clipboard

Feb 14th, 2022
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Copy to Clipboard
  2.  
  3. const copyToClipboard = (text) =>
  4.   navigator.clipboard?.writeText && navigator.clipboard.writeText(text);
  5. // Testing
  6. copyToClipboard("Hello World!");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement