diff options
author | Arlindo Pereira <nighto@users.noreply.github.com> | 2016-06-26 10:22:34 -0300 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-06-26 15:22:34 +0200 |
commit | ec15a36de7bcc56708d7e6d52fabe0296b8cc466 (patch) | |
tree | e0bb4a26ad1e0f100a93c3693d2e7f7d521a7fde /pt-br/javascript-pt.html.markdown | |
parent | 6069ef6dc36baa14eda997591031c1eaf78b6481 (diff) |
Removing untranslated duplicated text (#2227)
Diffstat (limited to 'pt-br/javascript-pt.html.markdown')
-rw-r--r-- | pt-br/javascript-pt.html.markdown | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pt-br/javascript-pt.html.markdown b/pt-br/javascript-pt.html.markdown index 59c6890e..e337f4bc 100644 --- a/pt-br/javascript-pt.html.markdown +++ b/pt-br/javascript-pt.html.markdown @@ -197,7 +197,6 @@ myObj.myFourthKey; // = undefined // A sintaxe para essa seção é quase idêntica a maioria das linguagens. -// The `if` structure works as you'd expect. // A estrutura `if` funciona como deveria ser. var count = 1 if (count == 3){ @@ -219,9 +218,6 @@ do { input = getInput(); } while (!isValid(input)) -// The `for` loop is the same as C and Java: -// initialisation; continue condition; iteration. - // O loop `for` é o mesmo de C e Java: // inicialização, condição para continuar; iteração for (var i = 0; i < 5; i++){ |