Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions 1-js/02-first-steps/07-operators/1-increment-order/solution.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

The answer is:
A resposta é:

- `a = 2`
- `b = 2`
Expand All @@ -9,10 +9,10 @@ The answer is:
```js run no-beautify
let a = 1, b = 1;

alert( ++a ); // 2, prefix form returns the new value
alert( b++ ); // 1, postfix form returns the old value
alert( ++a ); // 2, a forma prefixo retorna o novo valor
alert( b++ ); // 1, a forma sufijo retorna o valor antigo

alert( a ); // 2, incremented once
alert( b ); // 2, incremented once
alert( a ); // 2, incrementado uma vez
alert( b ); // 2, incrementado uma vez
```

4 changes: 2 additions & 2 deletions 1-js/02-first-steps/07-operators/1-increment-order/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ importance: 5

---

# The postfix and prefix forms
# As formas de sufixo e prefixo

What are the final values of all variables `a`, `b`, `c` and `d` after the code below?
Quais são os valores finais de todas as variáveis `a`, `b`, `c` e `d` após o código abaixo?

```js
let a = 1, b = 1;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The answer is:
A resposta é:

- `a = 4` (multiplied by 2)
- `x = 5` (calculated as 1 + 4)
- `a = 4` (multiplicado por 2)
- `x = 5` (calculado como 1 + 4)

4 changes: 2 additions & 2 deletions 1-js/02-first-steps/07-operators/2-assignment-result/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ importance: 3

---

# Assignment result
# Resultado da atribuição

What are the values of `a` and `x` after the code below?
Quais são os valores de `a` e `x` depois do código abaixo?

```js
let a = 2;
Expand Down
Loading