-
-
Notifications
You must be signed in to change notification settings - Fork 438
London 10-Danny Romero-JavaScript-Core-1-coursework-week2 #447
base: main
Are you sure you want to change the base?
Conversation
answer 2 mandatory
finished i-fix-Function
update exercise mandatory
update 2-function-creation
I finished the extra exercise |
|
||
if (isBigEnough) { | ||
if (isBigEnough > 10) { | ||
return "num is greater than 10"; | ||
} else { | ||
return "num is not big enough"; |
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.
Comment: Well done! You code is same as mine and should work.
console.log(numberOfLoops); | ||
numberOfLoops = numberOfLoops + 2; | ||
} | ||
} |
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.
Comment:
You have labelled the values different than me but the function is the same. Well done!
Mine:
function printOddNumbers(limit) {
let num=1;
while(num<limit){
console.log(num);
num=num+2;
}
}
}else { | ||
return "You Don't Need To Register" | ||
} | ||
} |
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.
Comment: A stylistic thing. Sometimes you have spaces between code blocks and sometimes not. Compare Line 68 (age<12){
But on line 71 (age> 12 && age<90){
update exercise 1
Volunteers: Are you marking this coursework? You can find a guide on how to mark this coursework in
HOW_TO_MARK.md
in the root of this repositoryYour Details
Homework Details
Notes
What did you find easy?
What did you find hard?
What do you still not understand?
Any other notes?