Почему в функциях strong и em не видны переменные textarea , textareaContent, coursorPosition
var textarea = document.querySelector(".textarea");
var textareaContent = textarea.value;
var coursorPosition = textarea.selectionStart;
strong.onclick = function(){
textarea.value = textareaContent.slice(0,coursorPosition) + "<strong>(Вставьте вместо этого текста свой текст.)</strong>" + textareaContent.slice(coursorPosition);
}
em.onclick = function(){
textarea.value = textareaContent.slice(0,coursorPosition) + "<em>(Вставьте вместо этого текста свой текст.)</em>" + textareaContent.slice(coursorPosition);
}