Top-level `await` is coming to JavaScript modules! You’ll soon be able to use `await` without needing to be in an async function.
seen from China

seen from United States

seen from Kazakhstan

seen from Malaysia
seen from China
seen from United States

seen from Singapore
seen from Malaysia
seen from Netherlands
seen from United States
seen from China

seen from Netherlands

seen from France
seen from United States
seen from China

seen from Malaysia
seen from Thailand

seen from Germany
seen from China
seen from France
Top-level `await` is coming to JavaScript modules! You’ll soon be able to use `await` without needing to be in an async function.
The ECMAScript standard has been updated yet again with the addition of new features in ES2019. Now officially available in node, Chrome, Firefox, and
Next to my main job of building out and running electrade I help a friend’s team with their project. Recently, we wanted to build a Craiglist-style anonymous email relay with a “serverless” Google Firebase Function (same as AWS Lambda, Azure Functions, etc) for this project. So far I’ve found handling async operations with .then() callbacks easier to think through, but wanted to use async/await here because it’s so much cleaner to read.
Date is weird in JavaScript. It gets on our nerves so much that we reach for libraries (like Date-fns and Moment) the moment (ha!) we need to work with
Web development is hard. We don’t always get it right on the first try. Fortunately, we don’t have to get everything perfect from the start. Jeremy Wagner provides some helpful ways to start recov…
An interactive demonstration how loose comparison (==) works in JavaScript
Several proposals expand the existing JavaScript class syntax with new functionality. This article explains the new public class fields syntax in V8 v7.2 and Chrome 72, as well as the upcoming private class fields syntax.
Coders often default to log errors. This is a bad habit. Learn how to build a beautiful structure to bulletproof your Error handling.