From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- .../ecmascript_6_support_in_mozilla/index.html | 153 +++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 files/it/web/javascript/ecmascript_6_support_in_mozilla/index.html (limited to 'files/it/web/javascript/ecmascript_6_support_in_mozilla') diff --git a/files/it/web/javascript/ecmascript_6_support_in_mozilla/index.html b/files/it/web/javascript/ecmascript_6_support_in_mozilla/index.html new file mode 100644 index 0000000000..f631744c80 --- /dev/null +++ b/files/it/web/javascript/ecmascript_6_support_in_mozilla/index.html @@ -0,0 +1,153 @@ +--- +title: ECMAScript 6 support in Mozilla +slug: Web/JavaScript/ECMAScript_6_support_in_Mozilla +translation_of: Archive/Web/JavaScript/New_in_JavaScript/ECMAScript_2015_support_in_Mozilla +--- +

{{jsSidebar("New_in_JS")}}ECMAScript 2015 è la prossima versione standard, nome in codice "Harmony", "ES.next" o "ECMAScript 6". Specification drafts possono essere trovate sulla wiki ufficiale. Se si volesse lasciare un feedback sullo standard, si prega di farlo su es-discuss.

+ +

Caratteristiche attualmente supportate in  Firefox

+ +

Sintassi

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CaratteristicaVersioneCommenti
const?not compliant with the current specification: const bindings behave like var instead of let
let?not compliant with the current specification
Destructuring assignmentJS 1.7not compliant with the current specification
for...of statement{{fx_minversion_inline("13")}} 
Iterators e generatori?not compliant with the current specification)
Rest parameters{{fx_minversion_inline("15")}} 
Parametri predefiniti{{fx_minversion_inline("15")}} 
Spread operator of Array{{fx_minversion_inline("16")}} 
+ +

Libreria Standard

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CaratteristicaVersioneCommenti
Map{{fx_minversion_inline("13")}}
+ Iterable since {{fx_minversion_inline("17")}}
A new type of collections
Set{{fx_minversion_inline("13")}}
+ Iterable since {{fx_minversion_inline("17")}}
A new type of collections
WeakMap{{fx_minversion_inline("6")}}
+ clear() in {{fx_minversion_inline("20")}}
A new type of collections
Proxy{{fx_minversion_inline("18")}} 
RegExp sticky (y) flag? 
Number.isNaN(){{fx_minversion_inline("16")}} 
Number.isFinite(){{fx_minversion_inline("16")}} 
Number.toInteger(){{fx_minversion_inline("16")}} 
Number.isInteger(){{fx_minversion_inline("16")}} 
String.startsWith(){{fx_minversion_inline("17")}} 
String.endsWith(){{fx_minversion_inline("17")}} 
String.contains(){{fx_minversion_inline("17")}} 
+ +

Caratteristiche non ancora supportate

+ + + +

Guarda anche

+ + -- cgit v1.2.3-54-g00ecf