CSS

Button alignment in columns

Posted on 2.16.24

A common layout issue that I notice happens frequently when building web pages is the multi column ‘card’ style layout that would typically have some content inside each tab with a call to action button at the bottom. A typical example is shown in the image below. (For this example I have used Flexbox to […]

CONTINUE READING
JavaScript

JavaScript for loops

Posted on 2.15.24

The concept of loops is present in almost all programming languages, a loop is a control flow statement that specifies iteration and is basically a method for executing statements one or more times up to a desired number of times. This is especially useful if you are working with arrays (there is actually more than […]

CONTINUE READING
JavaScript

JavaScript arrays

Posted on 2.12.24

Arrays are an integral part of JavaScript programming (or programming in any language) and are probably one of the most useful things you can master. You should consider using an array whenever you are working with a list or a set of values that are related to each other. In this short blog I will […]

CONTINUE READING

Hoisting in JavaScript

Posted on 2.9.24

Recently I have tried to really dig deep with understanding JavaScript at a higher level, in my early days of learning to code it was pretty much a trial and error affair with putting in some code and then hacking away at it for ages afterwards when it wouldn’t do what I wanted it to. […]

CONTINUE READING