Skip to main content

13 docs tagged with "javascript"

View all tags

1 Language, Multiple Paradigms

Explore how JavaScript supports multiple programming paradigms including procedural and functional programming, and learn the differences and use cases for each.

const gives let its meaning

Use `const` for everything unless a variable needs to be reassigned. Let `let` signal that mutation is intentional and expected.

Creative Uses of Destructuring

Explore creative techniques for using JavaScript destructuring to simplify common coding tasks such as swapping variables, handling function parameters, and managing nested objects.

Examples

Comparisons of DS&A tasks across different languages"

Experiments

Explore how JavaScript handles attempts to index an array using floating-point numbers, highlighting the importance of integer indices for expected behavior.

Insights on Using TypeScript

Reflects on personal experiences with TypeScript, highlighting its challenges and benefits in the context of JavaScript development, particularly when used with frameworks like React and Angular.

JSON to PDF

Finding elegance in a task I was NOT looking forward to

My Thoughts

An in-depth analysis of JavaScript, covering its flexibility, dynamic nature, ecosystem, and programming paradigms, alongside critiques of its standard library inconsistencies and tooling complexities.

My Thoughts

Reflecting on a personal journey with Typescript, exploring initial struggles and eventual understanding through practical experience with frameworks like React and Angular.

QRG: await vs Promise.all: Awaiting Arrays of Promises

This page explains the correct use of await and Promise.all when dealing with arrays of promises in JavaScript, providing guidance on resolving multiple promises effectively. It covers common mistakes and solutions when handling asynchronous functions that return an array of promises.