JavaScript - 大文字、小文字を変換
JavaScriptでアルファベットの大文字を小文字に、 小文字を大文字に変換したい場合は、
StringオブジェクトのtoLowerCase() メソッド、toUpperCase() メソッドを使用します。
大文字を小文字に変換 toLowerCase()
大文字を小文字に変換する場合は、toLowerCase() メソッドを使います。
var str = 'Yet The Earth Does Move.';
console.log(str.toLowerCase()); // yet the earth does move.
console.log('Hello'.toLowerCase()); // hello
小文字を大文字に変換 toUpperCase()
小文字を大文字に変換する場合は、toUpperCase() メソッドを使います。
var str = 'Yet The Earth Does Move.';
console.log(str.toUpperCase()); // YET THE EARTH DOES MOVE.
console.log('Hello'.toUpperCase()); // HELLO