aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/javascript/reference/functions/arrow_functions
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/javascript/reference/functions/arrow_functions')
-rw-r--r--files/fr/web/javascript/reference/functions/arrow_functions/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/javascript/reference/functions/arrow_functions/index.html b/files/fr/web/javascript/reference/functions/arrow_functions/index.html
index a956e7e39b..8beaaa3098 100644
--- a/files/fr/web/javascript/reference/functions/arrow_functions/index.html
+++ b/files/fr/web/javascript/reference/functions/arrow_functions/index.html
@@ -61,7 +61,7 @@ f();
<p>Deux facteurs sont à l’origine de la conception des fonctions fléchées : une syntaxe plus courte et l’absence de <code>this</code> spécifique à la fonction. Sur ce dernier point, cela signifie qu’une fonction fléchée ne lie pas son propre {{jsxref("Opérateurs/L_opérateur_this","this")}} au sein de la fonction (il en va de même avec {{jsxref("Fonctions/arguments","arguments")}}, {{jsxref("Opérateurs/super","super")}} ou {{jsxref("Opérateurs/new.target","new.target")}}).</p>
<div class="note">
-<p>Voir aussi l’article sur les fonctions fléchées présent sur <a href="https://tech.mozfr.org/post/2015/06/10/ES6-en-details-%3A-les-fonctions-flechees">https://tech.mozfr.org/post/2015/06/10/ES6-en-details-%3A-les-fonctions-flechees</a> (l’article original en anglais est disponible <a href="https://hacks.mozilla.org/2015/06/es6-in-depth-arrow-functions/">ici</a>).</p>
+<p><strong>Note :</strong> Voir aussi l’article sur les fonctions fléchées présent sur <a href="https://tech.mozfr.org/post/2015/06/10/ES6-en-details-%3A-les-fonctions-flechees">https://tech.mozfr.org/post/2015/06/10/ES6-en-details-%3A-les-fonctions-flechees</a> (l’article original en anglais est disponible <a href="https://hacks.mozilla.org/2015/06/es6-in-depth-arrow-functions/">ici</a>).</p>
</div>
<h3 id="Syntaxe_plus_courte">Syntaxe plus courte</h3>