Category
javascript
17 posts in this category.
Category archive
Posts
Showing 10 posts
- Taking the month off
After I completed the full stack web dev boot camp (see my final project code) I decided to give myself a month off studying software…
- YelpCamp
I've now reached a turning point in my web dev course. This morning I started writing code on my first meaty project, YelpCamp. As the name…
- JSON
I've worked with JSON data before when I was learning Swift and iOS development. At the time I didn't really know much of JavaScript or its…
- Express snippets
Since I'm playing with Express at the moment I've updated my collection of snippets to include a few things I seem to be doing regularly:…
- NPM and a Demon
So learning node.js has been really interesting so far, I'm quite taken by it. It's great being able to transfer my JavaScript skills from…
- I made a thing: Aroha generator
So I made another thing. The only reason I'm really even talking about it is because what's going on in Christchurch is so awful I can hardly…
- Constantly letting down my variables
As it turns out I’ve been doing everything wrong. Well, maybe not everything, but at the very least I’ve been declaring variables incorrectly.…
- How to write modern JS
So you're learning JavaScript (JS), cool. Putting all this effort in, you'll want to be learning the modern usage of the language right? Time to…
- I made a thing: To-do list
Yep, I made another thing in JavaScript for the course I'm doing. This one's a bit more basic, but really it's more of cutting my teeth with…
- on() click()
Today I learned the difference between the on("click") and click() methods in jQuery. click() only adds listeners for existing elements, so it…