Velocidad de Escape

Memory Management in JavaScript and Garbage Collector

<a class="hover:no-underline text-blue underline" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Memory_management" target="_blank" rel="noopener noreferrer">Memory management</a> > Low-level...

JavaScript

Why in JS typeof array and null is object?

First at all, let's recap ## Data types in JavaScript | Type | `typeof` return value | |-----------|---------------------| | Null | "object" | | Undefined | "undefined" | |...

JavaScript

Using AbortController in React

The use of <a class="hover:no-underline text-blue underline" href="https://developer.mozilla.org/en-US/docs/Web/API/AbortController" target="_blank" rel="noopener noreferrer">AbortController</a> is helpful in...

React

Built-in error objects in JavaScript

This morning I was improving a bit my blog, and I found this piece of code, this is simply a validation that I am doing on a component that I create for Astro: ```js if (typeof text !== "string") { throw...

JavaScript