From 0a71bfa9cd291d8b3b8b41bfb68373c1ec33cc7a Mon Sep 17 00:00:00 2001 From: aopenna Date: Sun, 26 Dec 2021 20:56:08 -0300 Subject: fix translation of "sorting" and translate remaing (#3188) fix translation of "sorting" and translate the remaing of text not yet translate (from "Conditionals" to the bottom of page. --- .../reference/global_objects/bigint/index.html | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'files') diff --git a/files/pt-br/web/javascript/reference/global_objects/bigint/index.html b/files/pt-br/web/javascript/reference/global_objects/bigint/index.html index fc9cd37807..1c50895b75 100644 --- a/files/pt-br/web/javascript/reference/global_objects/bigint/index.html +++ b/files/pt-br/web/javascript/reference/global_objects/bigint/index.html @@ -136,7 +136,7 @@ const rounded = 5n / 2n; 2n >= 2 // ↪ true -

Eles podem ser misturados em arrays e sorteados.

+

Eles podem ser misturados em arrays e ordenados.

const mixed = [4n, 6, -12n, 10, 4, 0, 0n];
 // ↪  [4n, 6, -12n, 10, 4, 0, 0n]
@@ -154,17 +154,17 @@ const o = Object(0n);
 o === o // true
 
-

Conditionals

+

Condicionais

-

A BigInt behaves like a {{jsxref("Global_Objects/Number", "Number")}} in cases where it is converted to a {{jsxref("Global_Objects/Boolean", "Boolean")}}: via the {{jsxref("Global_Objects/Boolean", "Boolean")}} function; when used with logical operators {{jsxref("Operators/Logical_Operators", "Logical Operators")}}  ||, `&&`, and !; or within a conditional test like an {{jsxref("Statements/if...else", "if statement")}}.

+

A BigInt comporta-se como {{jsxref("Global_Objects/Number", "Number")}} nos casos onde ele é convertido para um {{jsxref("Global_Objects/Boolean", "Boolean")}}: através da função {{jsxref("Global_Objects/Boolean", "Boolean")}}; quando usado com operadores lógicos {{jsxref("Operators/Logical_Operators", "Logical Operators")}}  ||, `&&`, e !; ou dentro de um teste condicional como um {{jsxref("Statements/if...else", "if statement")}}.

if (0n) {
-  console.log('Hello from the if!');
+  console.log('Olá de um if!');
 } else {
-  console.log('Hello from the else!');
+  console.log('Olá de um else!');
 }
 
-// ↪ "Hello from the else!"
+// ↪ "Olá de um else!"
 
 0n || 12n
 // ↪ 12n
@@ -185,33 +185,33 @@ Boolean(12n)
 // ↪ true
 
-

Methods

+

Métodos

BigInt.asIntN()
-
Wraps a BigInt between -2width-1 and 2width-1-1
+
Limita um BigInt entre -2expoente-1 e 2expoente-1-1
BigInt.asUintN()
-
Wraps a BigInt between 0 and 2width-1
+
Limita um BigInt entre 0 e 2expoente-1
-

Properties

+

Propriedades

{{jsxref("BigInt.prototype")}}
-
Allows the addition of properties to a BigInt object.
+
Permite a adição de propriedades a um objeto BigInt.
-

BigInt instances

+

Instâncias BigInt

-

All BigInt instances inherit from BigInt.prototype. The prototype object of the BigInt constructor can be modified to affect all BigInt instances.

+

Todas as instâncias BigInt são herdades de BigInt.prototype. O protótipo do objeto do construtor do BigInt pode ser modificado para afetar todas as instâncias de BigInt.

-

Methods

+

Métodos

{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt/prototype', 'Methods')}}

-

Examples 

+

Examplos 

-

Calculating Primes

+

Calculando números primos

function isPrime(p) {
   for (let i = 2n; i * i <= p; i++) {
@@ -220,7 +220,7 @@ Boolean(12n)
   return true;
 }
 
-// Takes a BigInt as an argument and returns a BigInt
+// Toma um BigInt como argumento e retorna um BigInt
 function nthPrime(nth) {
   let maybePrime = 2n;
   let prime = 0n;
-- 
cgit v1.2.3-54-g00ecf