-
-
Notifications
You must be signed in to change notification settings - Fork 863
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
base: portuguese-translation
Are you sure you want to change the base?
Conversation
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. |
There was a problem hiding this comment.
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"
?
types & grammar/ch2.md
Outdated
|
||
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. |
There was a problem hiding this comment.
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
There was a problem hiding this 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"
Alterações sugeridas feitas. Obrigado!!! |
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