Frontend

ES2022 Private Field Brand Check

ECMAScript 2022 provides a simpler way to check if an object has a given private field using the 'in' operator.

CSS Overscroll and Scroll Snap

Improve the scroll bar behavior with CSS properties 'overscroll-behavior' and 'scroll snap'.

ES2022 Adds at() Method for Arrays

The at() method takes an integer value and returns the element at that index. It allows both positive and negative integers.

Next.js with TypeScript and Tailwind

A step-by-step guide on how to build a Next.js application with Typescript and Tailwind CSS

What's New in Tailwind CSS v3?

Tailwind CSS v3 has released its version 3 with several new utilities and variants for a more improved workflow.

ECMAScript Adds Top-level await Support

We can only use await operator within an async method. In ECMAScript 2022 we will be able to use it outside of the context of an async method in our modules.

ES2022 Introduces Static Class Features

Private and public static fields along with private static methods would be officially included in ECMAScript 2022.

Rails 7 added --css app generator

Rails 7 added --css app generator for configuring CSS processors.

Understanding CSS Custom Properties

Custom properties give us the ability to set properties at the central place, which can be used whenever required.

JavaScript ES2022 Class Fields: Public and Private

Learn how ES2022 public and private class fields simplify JavaScript class definitions with cleaner syntax.