November 2020 web platform update
Now widely available on the web platform
Widely available
-
Array iterators: Arrays are iterable with the
for … of
statement and enumerable with the methodsentries()
,keys()
, andvalues()
. Learn more. -
JavaScript modules: JavaScript modules allow code to be organized into reusable units. Modules use
import
to load other modules andexport
to declare what is available to import from other modules. In HTML, modules are loaded with<script type="module">
. Learn more.
Newly available on the web platform
Newly available
-
Conic gradients: The
conic-gradient()
andrepeating-conic-gradient()
CSS functions create backgrounds that progress between two or more colors around a center point. Learn more. -
Text underline position: The
text-underline-position
andtext-underline-offset
CSS properties set the position and distance from initial position of text underlines on text withtext-decoration: underline
. Learn more.