Design comparison
SolutionDesign
Solution retrospective
All Feedbacks are welcome
Community feedback
- @0xabdulkhaliqPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have other recommendations regarding your code that I believe will be of great interest to you.
JAVASCRIPT 🟡:
- Looks like the some messages regarding the user's rating selection and it's data are logging at developer console due to the
console.log()
. it's an issue to haveconsole.log()
statements in a finished web application.
- This is because
console.log()
statements are used for debugging purposes, and they are not intended to be seen by users. Whenconsole.log()
statements are left in a finished web application, they can reveal sensitive information to users, such as the values of variables or the structure of the application's code. This can make the application vulnerable to attack.
- So please remove those
console.log()
statements from the application as soon as possible. then we can completely remove the risk of sensitive information being exposed to users.
.
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!
Marked as helpful1
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord