function toUpperWord (word) {
const arr = [...word].filter(L => /[A-ZА-ЯЁ]/g.test(L) ? L : false);
return `Количество заглавных букв в слове ${word}: ${arr.length}`;
}
Цикличная проверка не имеет смысла, когда весь код можно настолько упростить.
function toUpperWord1 (word1) {
let result = ''
let x = word1[i]
for (let i=0; i<word1.length; i++){
if (word1[i]===x){
result = ${word1}${result}
count +=1
}
}
return result + count
}
toUpperWord1()
console.log (toUpperWord1("хирУРГиЯ"))