JavaScript is a language full of wonderful quirks. In this post, I want to explore a few quirks about the typeof operator. The typeof operator As a...
What are symbols? Symbols are primitive values that are guaranteed to be unique. You can create a new symbol with the Symbol constructor and...
Introduction It’s common to use the logical OR operator (||) to specify a default value: function createSong(title, artist) { return { ...
Introduction You’ve probably come across template literals when writing JavaScript: function sayHi(name) { console.log(`Hi,...
Introduction Take a look at the following code and guess what happens when the Main method gets invoked: public class Program { public static...
A quick look at positioning elements in CSS. · Introduction In this post, we’ll learn about positioning schemes, which we can use to change an element’s...