aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/javascript/reference/functions/method_definitions/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/javascript/reference/functions/method_definitions/index.html')
-rw-r--r--files/fr/web/javascript/reference/functions/method_definitions/index.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/files/fr/web/javascript/reference/functions/method_definitions/index.html b/files/fr/web/javascript/reference/functions/method_definitions/index.html
index c8991b325a..13c6fdf0fa 100644
--- a/files/fr/web/javascript/reference/functions/method_definitions/index.html
+++ b/files/fr/web/javascript/reference/functions/method_definitions/index.html
@@ -17,8 +17,6 @@ original_slug: Web/JavaScript/Reference/Fonctions/Définition_de_méthode
<div>{{EmbedInteractiveExample("pages/js/functions-definitions.html")}}</div>
-<p class="hidden">Le code source de cet exemple interactif est disponible dans un dépôt GitHub. Si vous souhaitez contribuez à ces exemples, n'hésitez pas à cloner <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> et à envoyer une <em>pull request</em> !</p>
-
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">var obj = {
@@ -157,7 +155,7 @@ new obj.g; // TypeError: obj.g is not a constructuer (changé avec ES2016)
<h3 id="Cas_de_test">Cas de test</h3>
-<pre class="brush: js;highlight[3]">var obj = {
+<pre class="brush: js">var obj = {
a : "toto",
b(){ return this.a; }
};
@@ -168,7 +166,7 @@ console.log(obj.b()); // "toto"
<p>Cette notation raccourcie peut également être utilisée avec des noms de propriétés calculés.</p>
-<pre class="brush: js;highlight[4]">var bar = {
+<pre class="brush: js">var bar = {
toto0 : function (){return 0;},
toto1(){return 1;},
["toto" + 2](){return 2;},