JavaScript's Nullish Coalescing Operator
January 31, 2025
The nullish coalescing operator (??) returns the right operand when the left is null or undefined — a more precise alternative to the || operator...
Read note →Front-End Engineer. Always a student.
The nullish coalescing operator (??) returns the right operand when the left is null or undefined — a more precise alternative to the || operator...
Read note →A practical workflow for using AI to quickly get caught up on long GitHub Discussions, Issues, and Pull Request threads...
Read note →The display: contents; rule tells CSS to skip the targeted element in layout calculations, treating its children as direct children of the parent...
Read note →When you write a script to automate a task, it's ideal to call it from anywhere on your filesystem rather than navigating to its directory each time...
Read note →Introduced in ECMAScript 2020, Optional Chaining allows you to read deeply nested object properties without explicitly validating each reference in the chain...
Read note →