Functions Flashcards

1
Q

Como definir um valor padrão para argumentos de função?

A

let funcao = function(argumento = 0){}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Como usar template String?

A
let nome = 'Átila'
let sobrenome = 'Ebenriter'
console.log(${nome} + ' ' + ${sobrenome})
How well did you know this?
1
Not at all
2
3
4
5
Perfectly