We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
URL : https://github.com/asciidwango/js-primer/blob/master/source/basic/loop/README.md
はじめまして、いつもこちら利用し学習させていただいております。 引数の表記が誤っているのではないかと思い、ご連絡です。
内容としては、「もちろん、次のようにcontinue文を使わずに「偶数ならresultsへ追加する」という書き方も可能です。」の以下に続くコードについて現在のコードでは引数が異なるためかうまく動作しませんでした。
初学者ゆえ、当方の書き損じや誤認識もあるかも知れませんが、ご確認いただければ幸いです。
現在 if (isEven(number)) { results.push(number); } 修正案 if(isEven(num)) { results.push(num); }
if (isEven(number)) { results.push(number); }
if(isEven(num)) { results.push(num); }
The text was updated successfully, but these errors were encountered:
ありがとうございます! num とするのが正しいので、#1742 で修正しました。
num
以前、 #829 で サンプルコードをまとめて number → num に変更したときに、漏れていたようです。ご報告ありがとうございます!
number
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
URL : https://github.com/asciidwango/js-primer/blob/master/source/basic/loop/README.md
はじめまして、いつもこちら利用し学習させていただいております。
引数の表記が誤っているのではないかと思い、ご連絡です。
内容としては、「もちろん、次のようにcontinue文を使わずに「偶数ならresultsへ追加する」という書き方も可能です。」の以下に続くコードについて現在のコードでは引数が異なるためかうまく動作しませんでした。
初学者ゆえ、当方の書き損じや誤認識もあるかも知れませんが、ご確認いただければ幸いです。
現在
if (isEven(number)) { results.push(number); }
修正案
if(isEven(num)) { results.push(num); }
The text was updated successfully, but these errors were encountered: