References

String.toLowerCase()

Leírás

Lecseréli a String példány összes karakterét kisbetűre.

Szintaxis

toLowerCase()

Példa

const sentence = 'The quick brown fox jumps over the lazy dog.'
 
console.log(sentence.toLowerCase())
// Expected output: "the quick brown fox jumps over the lazy dog."
in this article
back to top