Tag page
javascript
Page 3 of 4
Tag archive
Posts
Page 3 of 4
- I made a thing - Colour Game
I made another thing in JavaScript as part of the course I’m doing. This time it’s a simple colour picker game. The code is still very rough but…
- We’ve all got issues
Since I’ve been learning JavaScript I’ve been making an effort to do things as if I was working with others. The idea being that any project of…
- I made a thing - Score keeper
I’ve been doing a web development course for a few months and today I made my first thing that actually does something. Nothing amazing mind…
- Listen to your heart
JavaScript is responsible for the behaviour of your website/app. At the heart of affecting the behaviour of the page is listening for user…
- DOM DOM DOM
Playing with the DOM is all about adding interactivity to your page. The DOM (Document Object Model) is the interface between your JavaScript…
- Load scripts last
So you’ve got your HTML and CSS sorted and you’ve started to drop in some customs scripts to make things a bit interactive. To keep things in…
- No Comments
When I was first learning to code, something that came up a lot was to always comment your code. Code comments have value, but despite what my…
- DRY variables
The concept of DRY code is simple, Don’t Repeat Yourself. So if you look at some code you’ve just written and notice it’s looking a bit moist,…
- Equals vs equals
In JavaScript not all comparisons are created equal... see what I did there. Let’s say we’re comparing two values like this: The use of “==“…
- Zombie code
Part of developing (and certainly learning to develop) is creating code, commenting it out, and creating a better version. As you get into a…