私は現在、C ++中心のプログラミングクラスの最終から1週間も経たないうちにJavascriptを学んでおりC++
、ループ内でいつ停止しますがi!<10
、9以降に出力を取得しているため、JSで続行すると想定しています。
Chrome で JS コンソールを使用しています
コードと出力は次のとおりです。
for (i=0; i<10; i++){
console.log("This is the number" + i.toString());
}
This is the number0
This is the number1
This is the number2
This is the number3
This is the number4
This is the number5
This is the number6
This is the number7
This is the number8
This is the number9
undefined