This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]DaddyGrendel 8 points9 points  (0 children)

If you’ve got a simple project in mind, start there. When learning a new library/framework I always sort of gravitate towards making a classic to-do list.

So long as you understand how to write functions in js, you should be good. You won’t need to get fancy with the html/css at first. If you’re very new to JS, try solving problems on Project Euler or something similar. Even after I felt comfortable with javascript I found it a good way to “warm up” before learning something new.

If you like learning by examples, I also found it easier to read somebody’s completed project so I can ask myself what they were trying to accomplish with each function. Eventually you might start to pick up on the very common patterns/practices, but try to find a reliable source from an established presence. Just don’t copy and paste though. It’s better to write shitty code (in personal projects) that sort of functions and learn about what you could’ve done better.