Search Results

Results for "javascript"

38 articles found

Node.js logo and command line interface JavaScript
1 min read

Getting Started with Node.js and NPM

JavaScript used to be confined to the browser. Then Node.js came along and allowed us to run JavaScript on the server. For a beginner, installing Node also…

JavaScript code highlighting the 'this' keyword JavaScript
1 min read

Understanding 'this' in JavaScript

The 'this' keyword in JavaScript is notoriously confusing because its value depends on how the function is called. In the global context, this refers to th…

Web form with validation messages HTML/CSS/JS
1 min read

Form Validation: HTML5 vs JavaScript

Forms are the gateway to user data, and validating that data is crucial. You have two layers: client-side validation (for UX) and server-side validation (f…

Web Components logo with custom elements JavaScript
1 min read

Introduction to Web Components

Before React and Vue, there was a native browser standard for reusable components: Web Components. They consist of three main technologies: Custom Elements…

CSS code showing custom property definitions and usage CSS
1 min read

CSS Variables (Custom Properties)

Maintaining large CSS files used to be a headache. If you wanted a consistent color scheme, you had to do a find-and-replace for every hex code. CSS Variab…