English to Emoji – Yandex Translate
translate.yandex.com87 pointsby uwu20 comments
textarea.onkeydown = event => {
// doesn't get the properties until they're accessed
const get {selectionStart, selectionEnd, value} = textarea;
// doesn't actually call .slice yet
const get selectedText = value.slice(selectionStart, selectionEnd);
// ...
if (event.key === "Enter") {
// initializes selectedText
console.log("selected text: " + selectedText);
// uses the same value, doesn't reinitialize it
selectedText;
}
};
https://top.mail.ru/help/en/rating
> Top Mail.Ru is a statistics system for site owners. You need to get and install the counter code on the pages of your site to collect data.
you can see the same code snippet that's on archive.ph here: https://top.mail.ru/help/en/code/receive