diff options
Diffstat (limited to 'files')
-rw-r--r-- | files/pt-br/web/javascript/reference/functions/arrow_functions/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/pt-br/web/javascript/reference/functions/arrow_functions/index.html b/files/pt-br/web/javascript/reference/functions/arrow_functions/index.html index 1694545a71..7095ca0ea2 100644 --- a/files/pt-br/web/javascript/reference/functions/arrow_functions/index.html +++ b/files/pt-br/web/javascript/reference/functions/arrow_functions/index.html @@ -209,7 +209,7 @@ var obj = { obj.b(); // imprime undefined, Window {...} (ou o objeto global) obj.c(); // imprime 10, Object {...}</code></pre> -<p><em>Arrow functions</em> não tem o próprio <code>this</code>. Outro exmemplo envolvendo {{jsxref("Object.defineProperty()")}}:</p> +<p><em>Arrow functions</em> não tem o próprio <code>this</code>. Outro exemplo envolvendo {{jsxref("Object.defineProperty()")}}:</p> <pre><code>'use strict'; |