JavaScript Everywhere

JavaScript runs in every browser and, thanks to Node.js, on servers too. This article covers variables, functions, DOM manipulation and async/await.

Variables

let, const — modern JavaScript uses block-scoped declarations.

Async

async function load() { const res = await fetch(url); }

Related articles