-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
London11 | Karla Grajales | Module-Data-Groups | Sprint-3 Debugging Book-Library-Book #151
base: main
Are you sure you want to change the base?
Conversation
and passing as parameter index directly in the event to avoid overlapping, delButton eventListener
and passing as parameter index directly in the event to avoid overlapping, delButton eventListener
London11 | Karla Grajales | sprint-3 mergin commits from main.
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.
-
On page load, is it necessary to call
render()
twice? -
In terms of input validation,
- Are all input properly checked?
- Can
.value
benull
? (Do we need to checksomeInputElement.value == null
?) - What if a user enters only space characters in the "title" input field?
- What if a users enters
-1
or3.1416
in the "pages" input field?
There is also some errors in index.html
. Perhaps an HTML validator can quickly help you identify them.
|
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.
After you fix the code that check for page numbers. Feel free to mark this as Completed.
pages.value == "" | ||
pages.value == "" || | ||
pages.value <= 0 || | ||
pages.value != parseInt() |
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.
Line 38 looks weird. What does that compare?
Learners, PR Template
Self checklist
Changelist
This project taught us key skills in debugging and version control. I resolved Git branch issues, handled cherry-picks, and fixed event listener errors in JavaScript. Clear boolean condition checks improved code reliability, and we efficiently resolved merge conflicts during cherry-pick operations. Finally, I emphasized the importance of maintaining a disciplined Git workflow to manage changes systematically.
Questions
Ask any questions you have for your reviewer.