5 Useful web APIs
1.ClipBoard API
This API provides access to the operating system's clipboard. You can use it to build a copy button to copy/paste content
const writeToClipBoard = async()=>
{
try{
await navigator.clipboard.writeText(userText);
con...
imankit.hashnode.dev2 min read