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

Add new translated section to #273

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions README-pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ Atualmente, temos essas traduções disponíveis de **wtfjs**:
- [Comparando `null` com `0`](#comparando-null-com-0)
- [Redeclaração da mesma variável](#redeclara%C3%A7%C3%A3o-da-mesma-vari%C3%A1vel)
- [Comportamento padrão Array.prototype.sort()](#comportamento-padr%C3%A3o-arrayprototypesort)
- [resolve() não retornará uma instância de Promise](#resolve-n%C3%A3o-retornar%C3%A1-uma-instancia-de-promise)

- [📚 Outros recursos](#-outros-recursos)
- [🎓 Licença](#-licen%C3%A7a)

Expand Down Expand Up @@ -1713,6 +1715,48 @@ Passe `comparefn` se você tentar ordenar algo que não seja string.
[ 10, 1, 3 ].sort((a, b) => a - b) // -> [ 1, 3, 10 ]
```

## resolve() não retornará uma instancia de Promise

```js
const theObject = {
a: 7
};
const thePromise = new Promise((resolve, reject) => {
resolve(theObject);
}); // Promise instance object

thePromise.then(value => {
console.log(value === theObject); // > true
console.log(value); // > { a: 7 }
});
```

O `value` em que é resolvido de `thePromise` é exatamente `theObject`

Que tal inserir outra `Promise` na função `resolve`?

```js
const theObject = new Promise((resolve, reject) => {
resolve(7);
}); // Promise instance object
const thePromise = new Promise((resolve, reject) => {
resolve(theObject);
}); // Promise instance object

thePromise.then(value => {
console.log(value === theObject); // > false
console.log(value); // > 7
});
```

### 💡 Explicação:

> Esta função nívela as camadas alinhadas de objetos promise-like (e.x uma promise que resolve para uma promise que resolve para alguma coisa) em uma camada única.

- [Promise.resolve() na MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/resolve)

A especificação é [ECMAScript 25.6.1.3.2 Promise Resolve Functions](https://tc39.es/ecma262/#sec-promise-resolve-functions). Porém não é muito amigável de se ler.

# 📚 Outros recursos

- [wtfjs.com](http://wtfjs.com/) — uma coleção dessas várias irregularidades especiais, inconsistências e momentos dolorosos para cada linguagem da web.
Expand Down