JavaScript学習まとめ(四)


17.arrayObj.pop()
配列の最後の要素を削除し、要素を返します.配列が空の場合、undefinedに戻ります.
 
18.Math.pow(ベース、exponent)
base(式)の指定乗数を返します.
例:Math.pow(10,4)  10000を返します
 
19.Math.random()
0と1の間の疑似乱数を返します.0==num<1
 
20.1 Math.round(number)
与えられた数値表式に最も近い整数を返します.numberの小数点が0.5以上であれば、戻り値はnumberの最小整数より大きくなります.Roundはnumber以下の最大整数を返します.
  21.arrayObj.push(item1,...,itemn) , , : ,  
22.str.concat(str1,...,strN) , , string1 ,( ,   array.push() ) 
23.object.ReadLine( ) TextStream ( , ), (object : TextStream ) :function GetLine()
    {
       var fso, f, r;
       var ForReading = 1, ForWriting = 2;
       fso = new ActiveXObject("Scripting.FileSystemObject");
       f = fso.OpenTextFile("c:\\testfile.txt", ForWriting, true);
       f.WriteLine("Hello world!");
       f.WriteLine("JScript is fun");
       f.Close();
       f = fso.OpenTextFile("c:\\testfile.txt", ForReading);
       r =  f.ReadLine();
       return(r);
    }
 
24.object.ReadAll( ) TextStream ( ReadAll 。 , ) 
25.object.Read(charNum) TextStream ,