Programming has drawn me back into math, and I am really enjoying seeing the parallels between the formal logic of mathematics and the logic we see in code. I… (more…)
Read more »
JavaScript is synchronous, meaning that it will execute your code block by order (after hoisting*) unless you need to use a timer or… (more…)
Read more »
I have been coding for longer than I care to admit. I am mostly “self-taught”, but I did eventually take some programming courses in…
Read more »
Javascript is a powerful language, but sometimes it doesn’t always do what you expect it to. Take the following expression for example. It’s a simple if statement that checks to see if true and then runs the code within the block. Running the code results... (more…)
Read more »