-
Notifications
You must be signed in to change notification settings - Fork 10.3k
fix some errors in Day 1, 2, 5, 6-12 #113
New issue
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
base: master
Are you sure you want to change the base?
Conversation
fix for loop statement
|
||
const scoresGreaterEight = scores.filter((score) => score.score > 80) | ||
const scoresGreaterEighty = scores.filter((score) => score.score > 80) | ||
console.log(scoresGreaterEight) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If const's name is scoresGreaterEighty
, then the line 360 must be console.log(scoresGreaterEighty);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it had changed before. You can check here: 7b2b7f2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is mistakenly committed. Please ignore this commit. db042ca
On Day 1 in the string section, it has introduced double quotes but in the example, it has not added. I have added double quotes in the example.
On Day 2, add the variation of the natural and common Logarithmic function and value of the trigonometric function.
On Day 6, fix the for of loop statement.
On Day 7, removed unused parentheses.
On Day 8, fixed some typos.
On Day 9, fixed some typos and variable names.
On Day 10, fixed some typos and the previous day and next day link.
On Day 11, fixed the position of the comment.
On Day 12, fixed some typos, code indentation, and the previous day and next day link.