Skip to content

Commit a6cd073

Browse files
authored
Update article.md
1 parent e236ade commit a6cd073

File tree

1 file changed

+1
-6
lines changed
  • 1-js/02-first-steps/18-javascript-specials

1 file changed

+1
-6
lines changed

1-js/02-first-steps/18-javascript-specials/article.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,8 @@ Aritméticos
143143
Asignaciones
144144
: Existen las asignaciones simples: `a = b` y las combinadas `a *= 2`.
145145

146-
<<<<<<< HEAD
147146
Operador bit a bit
148-
: Los operadores bit a bit funcionan con enteros de 32 bits al más bajo nivel, el de bit: vea la [documentación](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators) cuando sea necesario.
149-
=======
150-
Bitwise
151-
: Bitwise operators work with 32-bit integers at the lowest, bit-level: see the [docs](mdn:/JavaScript/Guide/Expressions_and_Operators#bitwise_operators) when they are needed.
152-
>>>>>>> 7bb6066eb6ea3a030b875cdc75433c458f80997e
147+
: Los operadores bit a bit funcionan con enteros de 32 bits al más bajo nivel, el de bit: vea la [documentación](https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Operators#operadores_binarios_bit_a_bit) cuando los necesite.
153148

154149
Condicional
155150
: El único operador con 3 parámetros: `cond ? resultA : resultB`. Sí `cond` es verdadera, devuelve `resultA`, de lo contrario `resultB`.

0 commit comments

Comments
 (0)