[1]alert()
[1.1] [OK] をクリックしないと、後続のコードの実行を続行できなくなります。
[1.2]alert() は文字列のみを出力できます。アラート出力がオブジェクトの場合、toString() メソッドが自動的に呼び出されます。
例:alert([1,2,3]);//'1,2,3'[1.3] アラートは複数のパラメーターの書き込みをサポートしておらず、最初の値のみを出力できます
例:alert(1,2,3);//1
[2]console.log()
[2.1] プリントステーションでの出力[2.2] あらゆる種類のデータを印刷できます
例: console.log([1,2,3]);//[1,2,3]
[2.3] 複数パラメータの書き込みをサポート
例: console.log(1,2,3)// 1 2 3
alertとconsole.logの結果が違う?
score = [1,2,3]; sortedScore = []; console.log(score); sortedScore = score.sort(sortNumber) console.log(sortedScore); function sortNumber(a, b) { return b - a; }
[3、2、1]
[3、2、1]
score = [1,2,3]; sortedScore = []; alert(score); sortedScore = score.sort(sortNumber) alert(sortedScore); function sortNumber(a, b) { return b - a; }
1、2、3
3、2、1
1、2、3
3、2、1
?
これは非常に歴史的なバグで、先月の開発バージョンで修正されました。