“Ж.” Ответ

Ж.

if (character == character.toLowerCase())
{
  // The character is lowercase
}
else
{
  // The character is uppercase
}
//The problem with this answer is, 
//that some characters like numbers or punctuation 
//also return true when checked for lowercase/uppercase.

// this is the solution for it:
function isLowerCase(str)
{
    return str == str.toLowerCase() && str != str.toUpperCase();
}
Encouraging NeoBliz

Проверьте, содержит ли строка строчные JavaScript

// A minified version of the other one:
const hasLowerCase= s => s.toUpperCase() != s;

console.log("HeLLO: ", hasLowerCase("HeLLO"));
console.log("HELLO: ", hasLowerCase("HELLO"));
Pandata

JS, если текст содержит строчный

function hasLowerCase(str) {
    return str.toUpperCase() != str;
}

console.log("HeLLO: ", hasLowerCase("HeLLO"));
console.log("HELLO: ", hasLowerCase("HELLO"));
Outrageous Otter

Ответы похожие на “Ж.”

Вопросы похожие на “Ж.”

Больше похожих ответов на “Ж.” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования