ES2015 `const` is not about immutability
Clarifies the common misconception that ES2015 `const` creates immutable values, explaining it only prevents variable rebinding.
Clarifies the common misconception that ES2015 `const` creates immutable values, explaining it only prevents variable rebinding.
Explains how to extend classes from CoffeeScript libraries using ES6 class syntax in JavaScript.
Explains how the experimental createImageBitmap API can move image decoding off the main thread to prevent jank and checkerboarding in web apps.
A technical guide on intercepting and monitoring XMLHttpRequest events in vanilla JavaScript by modifying the prototype.
A developer builds a real-time function index search tool using Cycle.js, exploring its observable-based architecture and comparing it to other frameworks.
Explains how JavaScript's array length property works, covering dense vs. sparse arrays and how modifying length affects elements.
A guide to JavaScript coding conventions covering indentation, semicolon usage, line length, and other style guidelines for readable, maintainable code.
A developer details implementing Prism.js for syntax highlighting on their blog, focusing on progressive enhancement.
Explains the complex behavior of JavaScript's equality (==) and identity (===) operators, detailing type coercion rules and providing illustrative examples.
A detailed look at how JavaScript's addition operator handles type conversion, including rules for strings, numbers, and objects.
A technical comparison of the Jasmine and Mocha JavaScript testing frameworks, covering their similarities, differences in assertions, and mocking.
Introducing Bliss, a lightweight 3KB JavaScript library for simplifying DOM manipulation and making Vanilla JS development more pleasant.
A developer's experience upgrading to Babel 6, which fixed ES6 module misunderstandings that broke their code, and the lessons learned.
A developer revisits and improves their JavaScript Tic Tac Toe game, focusing on refactoring win-checking logic and adding AI tactics.
A developer documents their journey of learning Vue.js by live-coding on Twitch, sharing the process with all its mistakes and discoveries.
A tutorial on how to easily add a Hacker News share button to a blog using code from Segment.io.
A developer documents the open redesign of their personal website, focusing on performance, accessibility, and modern web features.
A technical analysis of a website's poor scrolling performance, focusing on diagnosing and fixing parallax implementation issues using DevTools.
Explains the JavaScript Revealing Module Pattern to create cleaner, more maintainable objects with private methods and public APIs.
A challenging JavaScript quiz focusing on ES6 features like classes, generators, and template strings to test developers' understanding.