AS3知らなかった編

関数の引数の扱いで知らなかった。

ab(,30);

前だけの省略はNG

また、前だけの初期値設定もNG

function ab(a:int=1,b:in):void{

trace(a+b);

}

めんどくさ!なんでやねん!