File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
1-js/02-first-steps/04-variables/1-hello-variables Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 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 .
2
2
3
3
``` 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
5
5
6
6
name = " John" ;
7
7
Original file line number Diff line number Diff line change 1
- importance : 2
1
+ importância : 2
2
2
3
3
---
4
4
5
- # Working with variables
5
+ # Trabalhando com variáveis
6
6
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").
You can’t perform that action at this time.
0 commit comments