string.toLowerCase()
const sentence = 'The whiskers of a cat are highly sensitive to touch.';
sentence.toLowerCase(); // "the whiskers of a cat are highly sensitive to touch."Syntax
str.toLowerCase()Return value
Description
Examples
toLowerCase() λ©μλ μ¬μ©νκΈ°
'ALPHABET'.toLowerCase(); // "alphabet"Last updated