diff options
Diffstat (limited to 'files/pt-br/web/javascript/reference/operators/destructuring_assignment')
-rw-r--r-- | files/pt-br/web/javascript/reference/operators/destructuring_assignment/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/pt-br/web/javascript/reference/operators/destructuring_assignment/index.html b/files/pt-br/web/javascript/reference/operators/destructuring_assignment/index.html index 2b45f9ee47..7a75d8630e 100644 --- a/files/pt-br/web/javascript/reference/operators/destructuring_assignment/index.html +++ b/files/pt-br/web/javascript/reference/operators/destructuring_assignment/index.html @@ -96,7 +96,7 @@ console.log(b); // 1 <p>Sempre foi possível retornar uma matriz de uma função. A desestruturação pode tornar mais conciso o trabalho com um valor de retorno do tipo array.</p> -<p>Neste exemplo, <code>f()</code> returna os valores <code>[1, 2]</code> como saída, que podem ser analisados em uma única linha com desestruturação.</p> +<p>Neste exemplo, <code>f()</code> retorna os valores <code>[1, 2]</code> como saída, que podem ser analisados em uma única linha com desestruturação.</p> <pre class="brush:js notranslate">function f() { return [1, 2]; |