Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabepalhares/functions
Challenge from the course "Functions" from the Banco Inter's Bootcamp
https://github.com/gabepalhares/functions
Last synced: 21 days ago
JSON representation
Challenge from the course "Functions" from the Banco Inter's Bootcamp
- Host: GitHub
- URL: https://github.com/gabepalhares/functions
- Owner: gabepalhares
- Created: 2022-02-07T14:41:06.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-07T14:48:27.000Z (almost 3 years ago)
- Last Synced: 2024-11-11T09:16:55.603Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Functions
Challenge proposed from the course "Functions" - Banco Inter's Bootcamp## Atividade 1: Alunos Aprovados
1. Crie uma função que recebe o array `alunos` e um número que irá representar a média final;
2. Percorra o array e popule um novo array auxiliar apenas com os alunos cujas notas são maiores ou iguais à média final;
3. Utilize a técnica "object destructuring" para manipular as propriedades desejadas de cada aluno.## Atividade 2: This
Dada a função `calculaIdade`, utilize os métodos call e apply para modificar o valor de `this`. Crie seus próprios objetos para esta atividade!
```js
function calculaIdade(anos) {
return `Daqui a ${anos} anos, ${this.nome} terá ${
this.idade + anos
} anos de idade.`;
}
```