This content originally appeared on DEV Community and was authored by DEV Community
This is a weekly roundup of awesome DEV comments that you may have missed. You are welcome and encouraged to boost posts and comments yourself using the #bestofdev tag.
Becoming a successful developer is a long, complicated process. Thanks for adding to the conversation, @valeriavg !
No one's a fan of endless online courses, and neither is @keskyle17
! Thanks for the tip, here!
Thanks. My one-liner advice:
Get a personal project like a website underway, and build on it.
This is a great post on websites to practice frontend skills - thanks @lostgirljourney
for adding another to the list!
This one is also one of the best platform to practice.
A togglable dark mode theme is such a cool feature. Thanks to @ianwijma
for helping make the idea a reality!
Hey, curious why you use jQuery for one piece of the code, where the rest of the code is just vanilla JS :D
$(window).on("load",loadDark());
Could be replaced with:
window.addEventListener('load', () => loadDark());
</div>
JavaScript tip fans, this article is for you!! Thanks for the additional bit of insight here, @martinmuzatko
!
min: Math.min(...numbers)
max: Math.max(...numbers)
See you next week for more great comments ✌
This content originally appeared on DEV Community and was authored by DEV Community
DEV Community | Sciencx (2021-06-11T02:25:46+00:00) Top 5 DEV Comments from the Past Week. Retrieved from https://www.scien.cx/2021/06/11/top-5-dev-comments-from-the-past-week-2/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.
I'd like to add one more advice: when asked to estimate how long would development take, always add enough time for testing and refining the solution. From my experience this takes more time than coding itself, unless you're making a prototype.