encode()

種類メソッド
書式File.encode(文字列)
解説
文字列をエンコード(変換)します。変換された文字列はdecode()で復元することができます。
サンプルコード
result = File.encode("Let's go");
alert(result);
実際のスクリプトをダウンロード