Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aula #8 - Vídeo 45 - Funções nomeadas #7561

Closed
ghost opened this issue Oct 15, 2019 · 1 comment
Closed

Aula #8 - Vídeo 45 - Funções nomeadas #7561

ghost opened this issue Oct 15, 2019 · 1 comment

Comments

@ghost
Copy link

ghost commented Oct 15, 2019

var func = function(){ return 'hi';}
console.log(func()); // hi 
console.log(func.name); // retorna 'func' (no vídeo retorna string vazia)

Nesta aula é falado que para função retornar o NAME, é preciso nomeala, mas o exemplo acima ao ser executado retornou "func" para mim e não string vazia como é no vídeo, algo mudou na linguagem para que isso ocorra?

@fdaciuk

@fdaciuk
Copy link
Member

fdaciuk commented Oct 15, 2019

Oi @brunogbr! Esse comportamento foi alterado nos motores que rodam o JavaScript. Agora o nome da variável é atribuído à propriedade name da função, quando essa é anônima :)

@fdaciuk fdaciuk added the tip label Oct 15, 2019
@fdaciuk fdaciuk pinned this issue Oct 15, 2019
@fdaciuk fdaciuk closed this as completed Nov 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant