Category: JavaScript

Learn the ropes, discover handy tips, and unlock cool tricks to level up your JavaScript game.

group console logs in JavaScript

Group console.logs in JavaScript

If you find yourself trying to group multiple console.log() like this: Then allow me to show you a better alternative. You can use console.group() to mark the start of the group and console.groupEnd() to...

how to create your first electron app

How To Build Your First App With Electron

Have you ever wondered if you can build cross-platform desktop apps with HTML, CSS, and JavaScript? It is possible with Electron. This article is a step-by-step guide that will help you understand some core...

Mystery-and-History-of-typeof-null-in-JavaScript

Mystery and History of typeof null JavaScript

Programming languages all have built-in data structures, but these often differ from one language to another. In the latest JavaScript (ECMAScript 6) standard defines 7 data types: Six data types that are primitives: Boolean...