Skip to content

Commit 4ce5a2c

Browse files
author
Márcio Rodrigo
committed
Update hello-variables
1 parent 0a979e3 commit 4ce5a2c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

1-js/02-first-steps/04-variables/1-hello-variables/solution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
In the code below, each line corresponds to the item in the task list.
1+
No código abaixo, cada linha corresponde ao item na lista de tarefas.
22

33
```js run
4-
let admin, name; // can declare two variables at once
4+
let admin, name; // é possível declarar duas variáveis ao mesmo tempo
55

66
name = "John";
77

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
importance: 2
1+
importância: 2
22

33
---
44

5-
# Working with variables
5+
# Trabalhando com variáveis
66

7-
1. Declare two variables: `admin` and `name`.
8-
2. Assign the value `"John"` to `name`.
9-
3. Copy the value from `name` to `admin`.
10-
4. Show the value of `admin` using `alert` (must output "John").
7+
1. Declarar duas variáveis: `admin` e `name`.
8+
2. Atribuir o valor `"John"` para `name`.
9+
3. Copiar o valor de `name` para `admin`.
10+
4. Mostrar o valor de `admin` usando `alert` (deve retornar "John").

0 commit comments

Comments
 (0)