Skip to content

Commit b333bc7

Browse files
committed
Fase 1 finalizada
1 parent 38553f2 commit b333bc7

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Trilha JS
22
Projetos e exercicios dos cursos de JS
33

4-
> Fase 1 - [UDACITY] (https://br.udacity.com/course/javascript-basics--ud804/)
4+
Além das aulas e dos videos, tambem tem o arquivo __ExerciciosJS__, com pequenos exercicios e desafios resolvidos durante os estudo da linguagem
5+
6+
> Fase 1: [Javascript Basics | Udacity](https://br.udacity.com/course/javascript-basics--ud804/) - [**Concluido**]
7+
Projeto: [Curriculo Web](#)
8+
9+
> Fase 2: [Desvendando o JS](https://www.youtube.com/watch?v=093dIOCNeIc&list=PLQCmSnNFVYnT1-oeDOSBnt164802rkegc) - [**Em progresso**]
10+
11+

exerciciosJS.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Exercicios e Testes JS
2+
3+
1 - Converter velocidade da luz m/s para cm/nano
4+
2 - Converter "audacity" em "Udacity"
5+
3 - Adicionar mais '1 ao ultimo elemento de um array
6+
7+
```
8+
var meuArray = [1, 2, 3, 4, 5];
9+
var ultimoElemento = meuArray.pop();
10+
meuArray.push(ultimoElemento +1);
11+
```
12+
4 - Formatar string CaMEron PittMan em Cameron PITTMAN
13+
14+
```
15+
function inName(name) {
16+
name = name.trim().split(" ");
17+
name[1] = name[1].toUpperCase();
18+
name[0] = name[0].slice(0,1).toUpperCase() + name[0].slice(1).toLowerCase();
19+
return name[0] + " name[1];
20+
}
21+
```

frontend-nanodegree-resume

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 42fe3ec6cfa6b769e7c8a30ed0981e730d443ad5

0 commit comments

Comments
 (0)