toLowerCase メソッド
すべての英字を小文字に変換した文字列を返します。
function toLowerCase() : String
解説
toLowerCase メソッドは、英字だけに有効です。
使用例
toLowerCase メソッドの使用例を次に示します。
var strVariable = "This is a STRING object";
strVariable = strVariable.toLowerCase();
2 つ目のステートメントの実行後、変数 strVariable は次の値になります。
this is a string object