コールバックプログラミングの例
func1();
func2(arg1,arg2,function(){
console.log("end")
});
func3();
func2はすぐ終了
バックグラウンド処理される
終了すると"end"と表示