Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.`;
}
```