New in Chrome 74
Just in time for Google I/O, Chrome 74 is landing now! It adds support for private class fields; allows you to detect when the user has requested a reduced motion experience; adds support for CSS transition events, and plenty more. Let’s dive in and see what’s new for developers in Chrome 74!
chrome74
new-in-chrome
css
feature-policy
media-queries
es6
accessibility
New in Chrome 72
In Chrome 72, creating public class fields in JavaScript is now much cleaner, you can see if a page has been activated with the new User Activation API, localizing lists becomes way easier, and there’s plenty more. Let’s dive in and see what’s new for developers in Chrome 72!
chrome72
new-in-chrome
intl
es6
javascript
user-activation
New in Chrome 63
Chrome 63 allows you to import JavaScript modules dynamically. My favorite interview coding question becomes a piece of cake with async iterators and generators. And you can override the browser's default overflow scroll behavior with the CSS overscroll-behavior
property.
chrome63
new-in-chrome
css
overscroll
scroll
android
async
await
es6
generators
iterators
modules
permissions
streams
New in Chrome 61
Chrome 61 now supports JavaScript modules natively, unifying the way modular JavaScript can be written. You can now use navigator dot share to trigger the native Android share dialog. And the WebUSB API has landed, allowing web apps to access user permitted USB devices. And, there's plenty more.
chrome61
new-in-chrome
modules
es6
webusb
sharing
Getting Literal With ES6 Template Strings
Template String literals with embedded expressions. We've been waiting for this for ages. Literally
news
es6
javascript
ecmascript
Generators: the Gnarly Bits
An exploration of ES6 Generators.
Collecting and Iterating, the ES6 Way
Maps, Sets, and for...of iteration are ES6 features that can change the way you work with collections of data.