Skip to content

Commit

Permalink
Criado dados_3 - Trabalhando com dados cod3rcursos#3
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael-Lima-GTR committed Dec 22, 2021
1 parent 86af51c commit 36715e9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions exercicios-web/fundamentos/inicio/dados_03.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
let idade = 31;
console.log(typeof -31);
console.log(typeof idade);

let salario = 4578.32;
console.log(typeof salario);

let estaChovendo = true // ou false
console.log(typeof estaChovendo);

console.log(typeof "Teste");
console.log(typeof 'Teste');

0 comments on commit 36715e9

Please sign in to comment.