V8 release v9.7

Published · Tagged with release

Every four weeks, we create a new branch of V8 as part of our release process. Each version is branched from V8’s Git main immediately before a Chrome Beta milestone. Today we’re pleased to announce our newest branch, V8 version 9.7, which is in beta until its release in coordination with Chrome 97 Stable in several weeks. V8 v9.7 is filled with all sorts of developer-facing goodies. This post provides a preview of some of the highlights in anticipation of the release.

JavaScript #

findLast and findLastIndex array methods #

The findLast and findLastIndex methods on Arrays and TypedArrays find elements that match a predicate from the end of an array.

For example:

[1,2,3,4].findLast((el) => el % 2 === 0)
// → 4 (last even element)

These methods are available without a flag starting in v9.7.

For more details, please see our feature explainer.

V8 API #

Please use git log branch-heads/9.6..branch-heads/9.7 include/v8\*.h to get a list of the API changes.

Developers with an active V8 checkout can use git checkout -b 9.7 -t branch-heads/9.7 to experiment with the new features in V8 v9.7. Alternatively you can subscribe to Chrome’s Beta channel and try the new features out yourself soon.