forked from Asabeneh/30-Days-Of-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Asabeneh#598 from lucas-mch/master
Created and translated 01_Day_introduction for Portuguese
- Loading branch information
Showing
6 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log('Hello, World!') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>30DaysOfJavaScript</title> | ||
</head> | ||
|
||
<body> | ||
<h1>30DaysOfJavaScript:03 Day</h1> | ||
<h2>Introdução</h2> | ||
<button onclick="alert('Bem vindo ao 30DaysOfJavaScript!');">Clique aqui</button> | ||
<script src="./helloworld.js"></script> | ||
<script src="./introduction.js"></script> | ||
<script src="./variable.js"></script> | ||
<script src="./main.js"></script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log('Bem vindo ao 30DaysOfJavaScript') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Os valores das variáveis podem ser acessados de outro arquivo variable.js | ||
console.log(primeiroNome, sobrenome, pais, cidade, idade, isCasado) | ||
console.log(gravidade, pontoEbulicao, PI) // 9.81, 100, 3.14 | ||
console.log(nome, profissao, aondeMora) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Declarando diferentes variáveis com diferentes tipos de dados. | ||
|
||
let primeiroNome = 'Asabeneh' // primeiro nome de uma pessoa | ||
let sobrenome = 'Yetayeh' // sobrenome de uma pessoa | ||
let pais = 'Finlândia' // país | ||
let cidade = 'Helsinki' // capital do país | ||
let idade = 100 // idade em anos | ||
let isCasado = true | ||
|
||
// Declarando variáveis com valores numéricos | ||
|
||
const gravidade = 9.81 // gravidade da terra in m/s2 | ||
const pontoEbulicao = 100 // ponto de ebulição da água, temperatura em oC | ||
const PI = 3.14 // constante geométrica | ||
|
||
// Variáveis também podem ser declaradas em uma linha, separadas por vírgula. | ||
|
||
let nome = 'Asabeneh', //name of a person | ||
profissao = 'Professor', | ||
aondeMora = 'Finlândia' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Declarando diferentes variáveis com diferentes tipos de dados. | ||
|
||
let primeiroNome = 'Asabeneh' // primeiro nome de uma pessoa | ||
let sobrenome = 'Yetayeh' // sobrenome de uma pessoa | ||
let pais = 'Finlândia' // país | ||
let cidade = 'Helsinki' // capital do país | ||
let idade = 100 // idade em anos | ||
let isCasado = true | ||
|
||
// Declarando variáveis com valores numéricos | ||
|
||
const gravidade = 9.81 // gravidade da terra in m/s2 | ||
const pontoEbulicao = 100 // ponto de ebulição da água, temperatura em oC | ||
const PI = 3.14 // constante geométrica | ||
|
||
// Variáveis também podem ser declaradas em uma linha, separadas por vírgula. | ||
|
||
let nome = 'Asabeneh', //name of a person | ||
profissao = 'Professor', | ||
aondeMora = 'Finlândia' |