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

"Tipos & Gramática" - Término tradução do Cap. 2 #361

Open
wants to merge 2 commits into
base: portuguese-translation
Choose a base branch
from

Conversation

lucas-wa
Copy link

@lucas-wa lucas-wa commented Feb 7, 2023

A partir do tópico "Special Equality" o material ainda estava em inglês, por isso realizei a tradução. Eu havia pedido a oportunidade na Issue Tracker, mas ainda não obtive resposta. Porém, quis ajudar por se tratar de um trecho pequeno que faltava para completar a tradução do capítulo.

Close #10

A partir do tópico "Special Equality" o material ainda estava em inglês, por isso realizei a tradução. Eu havia pedido a oportunidade na Issue Tracker, mas ainda não obtive resposta. Mas quis ajudar por se tratar de um trecho pequeno que faltava para completar a tradução do capítulo.

Instead of using the wrapper object `Number` in this way, it's probably much better to use the manual object wrapper (`obj`) approach in the earlier snippet. That's not to say that there's no clever uses for the boxed object wrappers like `Number` -- just that you should probably prefer the scalar primitive value form in most cases.
Ao invés de usar o objeto `Number` desse jeito, é provavelmente melhor usar um objeto manual (`obj`) abordado no snippet mostrado anteriormente. Isso não quer dizer que não é bom usar objeto que englobam tipos primitivos como `Number` -- apenas que você provavelmente deveria preferir o valor primitivo escalar para a maioria dos casos.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Talvez trocar "snippet" por "trecho"?


As we saw above, the `NaN` value and the `-0` value have special behavior when it comes to equality comparison. `NaN` is never equal to itself, so you have to use ES6's `Number.isNaN(..)` (or a polyfill). Simlarly, `-0` lies and pretends that it's equal (even `===` strict equal -- see Chapter 4) to regular positive `0`, so you have to use the somewhat hackish `isNegZero(..)` utility we suggested above.
Como vimos acima, os valores `NaN` e `-0` possuem um comportamento especial quando se trata de uma comparação de igualdade. `NaN` nunca é igual a ele mesmo, então você precisa usar `Number.isNaN(..)` do ES6 (ou um polyfill). Similarmente, `-0` mente e finge ser igual (até `===` igual estrito -- veja o Capítulo 4) ao seu regular positivo `0`, então você precisa de alguma forma usar o utilitário `isNegZero(..)` que sugerimos acima.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Talvez o mudar o "regular" pra algo como "normal" ou algo que indique isso? Acredito que a expressão "regular positivo" pode ficar bem confusa

Copy link

@nltncsr nltncsr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cara, excelente! Parabéns!

Mudança de palavras traduzidas:
"snippet" => "trecho"
"regular" => "normal"
@lucas-wa
Copy link
Author

Alterações sugeridas feitas. Obrigado!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Types & Grammar (Tipos e Gramática) - Capítulo 2
2 participants