function showSelection() {
let selection = document.getSelection();
console.log(selection);
return selection.toString();
}
document.addEventListener("selectionchange", showSelection)
function showSelection() {
let selection = document.getSelection();
console.log(selection);
return selection.toString();
}
document.addEventListener("selectionchange", showSelection)