#javascript

Found 139 articles tagged with #javascript

JavaScript Nullish Coalescing

Nullish coalescing is a new JavaScript feature, introduced in ES2020, that helps to handle or values more efficiently. It is representedā€¦.

JavaScript Optional Chaining

Optional chaining is a new feature in JavaScript, introduced in ES2020, that allows you to safely access nested properties or methodsā€¦.

How to slugify a string in JavaScript

A slug is a string that is used to uniquely identify a resource in a URL-friendly way. It is typically used in the URL to identify a specific page or post on a website.

JavaScript Hoisting

Declaration of functions, variables or classes are moved to the top of their scope, prior to execution of the code.

React Event Handling

Handling events in React is simple but you have to careful about context inside event handlers because JavaScript class method not bound by default.

Feb 17, 2022#react#javascript

Joi - The Best Data Validator for JavaScript

A small, simple, intuitive, and standalone library which allows you to describe what shape of data you want using pure JavaScript.

Flow - JavaScript Static Type Checker

Flow is an open-source static type checker for JavaScript, written in OCaml, backed by Facebook, checks your code for errors through staticā€¦.

What's New in JavaScript ES2021

Latest not-finalized stage-4-proposal features going to be included in ECMAScript 2021.

Mar 17, 2021#javascript#news

Esbuild - A Fast JavaScript Bundler Written in Go

A trending easy-to-use extremely-fast modern JavaScript bundler and minifier that has API for JavaScript and Go.

Rollup - A Solid JavaScript Bundler for Libraries

Rollup was created to build flat distributables of JavaScript libraries as efficiently as possible, taking advantage of ES modules.

Mar 10, 2021#javascript#libs