diff options
author | MDN <actions@users.noreply.github.com> | 2021-05-29 01:14:43 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-05-29 01:14:43 +0000 |
commit | d94b4f47476bbc901753f68d6dfe317e1c5c732e (patch) | |
tree | 590036437f5c828d71f35d6880228be2b4361b50 /files/fr/web/javascript | |
parent | 05a7219ba9605649cb6daa281e26209eaa73adf0 (diff) | |
download | translated-content-d94b4f47476bbc901753f68d6dfe317e1c5c732e.tar.gz translated-content-d94b4f47476bbc901753f68d6dfe317e1c5c732e.tar.bz2 translated-content-d94b4f47476bbc901753f68d6dfe317e1c5c732e.zip |
[CRON] sync translated content
Diffstat (limited to 'files/fr/web/javascript')
-rw-r--r-- | files/fr/web/javascript/reference/operators/pipeline_operator/index.html | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/files/fr/web/javascript/reference/operators/pipeline_operator/index.html b/files/fr/web/javascript/reference/operators/pipeline_operator/index.html deleted file mode 100644 index 78d9c2f704..0000000000 --- a/files/fr/web/javascript/reference/operators/pipeline_operator/index.html +++ /dev/null @@ -1,73 +0,0 @@ ---- -title: Tube -slug: Web/JavaScript/Reference/Operators/Pipeline_operator -tags: - - Experimental - - JavaScript - - Opérateur - - Reference -translation_of: Web/JavaScript/Reference/Operators/Pipeline_operator -original_slug: Web/JavaScript/Reference/Opérateurs/Tube ---- -<div>{{jsSidebar("Operators")}} {{SeeCompatTable}}</div> - -<p>L'opérateur expérimental tube (ou <em>pipeline</em> en anglais) <strong><code>|></code></strong> (actuellement au niveau 1 des propositions) permet de créer des chaînes d'appel de fonctions de façon lisible. En fait, cet opérateur fournit un sucre syntaxique pour les appels de fonction avec un seul argument. On pourrait donc écrire :</p> - -<pre class="brush: js">let url = "%21%" |> decodeURI;</pre> - -<p>qui correspond exactement à :</p> - -<pre class="brush: js">let url = decodeURI("%21%");</pre> - -<h2 id="Syntaxe">Syntaxe</h2> - -<pre class="syntaxbox">expression |> function</pre> - -<p>La valeur de <code>expression</code> est passé à <code>function</code> comme unique paramètre.</p> - -<h2 id="Exemples">Exemples</h2> - -<h3 id="Enchaîner_des_appels_de_fonction">Enchaîner des appels de fonction</h3> - -<p>L'opérateur tube peut améliorer la lisibilité lorsqu'on enchaîne plusieurs fonctions.</p> - -<pre class="brush: js">const doubler = (n) => n * 2; -const incrementer = (n) => n + 1; - -// Sans l'opérateur tube -doubler(incrementer(doubler(10))); // 42 - -// Avec l'opérateur tube -10 |> doubler |> incrementer |> doubler; // 42 -</pre> - -<h2 id="Spécifications">Spécifications</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">Spécification</th> - <th scope="col">État</th> - <th scope="col">Commentaires</th> - </tr> - </thead> - <tbody> - <tr> - <td><a href="https://tc39.github.io/proposal-pipeline-operator/#sec-intro">Brouillon de spécification pour la proposition de l'opérateur tube</a></td> - <td>Niveau 1</td> - <td>Ne fait actuellement pas partie de la spécification ECMAScript.</td> - </tr> - </tbody> -</table> - -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> - -<div class="hidden">Ce tableau de compatibilité a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à envoyer une <em>pull request</em> sur <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>.</div> - -<p>{{Compat("javascript.operators.pipeline")}}</p> - -<h2 id="Voir_aussi">Voir aussi</h2> - -<ul> - <li><a href="https://github.com/tc39/proposals">Les propositions au TC39</a></li> -</ul> |