Introducing the New JSX Transform

Introducing the New JSX Transform

React will provide support for a new version of the JSX transform. In this post, we will describe what it is and how to try it.

Read more

editor's pick

React v18.0

React v18.0

React 18 major version includes out-of-the-box improvements like automatic batching, new APIs like startTransition, and streaming server-side rendering with support for Suspense

read more
Basic HTML Tags

Basic HTML Tags

Understanding basic HTML tags

read more
Optional chaining (?.)

Optional chaining (?.)

The optional chaining operator (?.) enables you to read the value of a property located deep within a chain of connected objects without having to check that each reference in the chain is valid.

read more

latest posts

Array.prototype.toString()

Array.prototype.toString()

The toString() method gives us the string representation of array, number, strings and booleans.

read more
Readonly Utility Type - Typescript

Readonly Utility Type - Typescript

What is the Readonly Utility Type? Readonly<Type> Constructs a type with all properties of Type set to readonly, meaning the properties of the constructed type cannot be reassigned.

read more
Understanding HTML boilerplate

Understanding HTML boilerplate

When launching a new website, it is essential to have a strong foundation. In this article, I’ll define an HTML5 boilerplate and show you how to make a basic template for usage in your projects

read more
JS Functions

JS Functions

Functions are one of the fundamental building blocks in JavaScript. A function in js is similar to a procedure a set of statements that performs a task or calculates a value, but for a procedure

read more