toUpperCase
種類
メソッド
書式
文字列.toUpperCase()
解説
英小文字を英大文字に変換します。
サンプルコード
str = "Amiga";
outputs[0] = str.toUpperCase();
実際のスクリプトを
ダウンロード