function copyE(){ const inputElement = document.querySelector('#input'); inputElement.select(); document.execCommand('copy'); } function pasteE(){ const pasteText = document.querySelector('#output'); pasteText.focus(); document.execCommand('paste'); } function cutE(){ }