-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformando el todo el codigo constantes
- Loading branch information
1 parent
42ba254
commit d0b47cf
Showing
4 changed files
with
1,482 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
const INPUT_BINARIO = document.querySelector("#INPUT_BINARIO"); | ||
const INPUT_DECIMAL = document.querySelector("#INPUT_DECIMAL"); | ||
const INPUT_BIT = document.querySelector("#INPUT_BIT"); | ||
|
||
const OUTPUT_BSS = document.querySelector("#OUTPUT_BSS"); | ||
const OUTPUT_BCS = document.querySelector("#OUTPUT_BCS"); | ||
const OUTPUT_CA1 = document.querySelector("#OUTPUT_CA1"); | ||
const OUTPUT_CA2 = document.querySelector("#OUTPUT_CA2"); | ||
const OUTPUT_EX2 = document.querySelector("#OUTPUT_EX2"); | ||
const OUTPUT_BITS = document.querySelector("#OUTPUT_BITS"); | ||
const OUTPUT_RANGO = document.querySelector("#OUTPUT_RANGO"); | ||
const BTN = document.querySelector("#BTN"); | ||
const ERROR = document.querySelector("#ERROR-MSG"); | ||
|
||
const OUTPUT_MIN_MAX_NEG_BSS = document.querySelector("#OUTPUT_MIN_MAX_NEG_BSS"); | ||
const OUTPUT_MIN_MAX_POS_BSS = document.querySelector("#OUTPUT_MIN_MAX_POS_BSS"); | ||
|
||
const OUTPUT_MIN_MAX_NEG_BCS = document.querySelector("#OUTPUT_MIN_MAX_NEG_BCS"); | ||
const OUTPUT_MIN_MAX_POS_BCS = document.querySelector("#OUTPUT_MIN_MAX_POS_BCS"); | ||
|
||
const OUTPUT_MIN_MAX_NEG_CA1 = document.querySelector("#OUTPUT_MIN_MAX_NEG_CA1"); | ||
const OUTPUT_MIN_MAX_POS_CA1 = document.querySelector("#OUTPUT_MIN_MAX_POS_CA1"); | ||
|
||
const OUTPUT_MIN_MAX_NEG_CA2 = document.querySelector("#OUTPUT_MIN_MAX_NEG_CA2"); | ||
const OUTPUT_MIN_MAX_POS_CA2 = document.querySelector("#OUTPUT_MIN_MAX_POS_CA2"); | ||
|
||
const OUTPUT_MIN_MAX_NEG_EX2 = document.querySelector("#OUTPUT_MIN_MAX_NEG_EX2"); | ||
const OUTPUT_MIN_MAX_POS_EX2 = document.querySelector("#OUTPUT_MIN_MAX_POS_EX2"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
const INPUT_BINARIO_ENTERO = document.querySelector("#input_binario_entero"); | ||
const INPUT_BINARIO_FRACCIONARIO = document.querySelector("#input_binario_fraccionaria"); | ||
|
||
const OUTPUT_DECIMAL_FRACCIONARIO = document.querySelector("#output_decimal_Fraccionario"); | ||
const $SELECT_ENTERA = document.querySelector("#miSelect"); | ||
const $SELECT_FRACCIONARIA = document.querySelector("#miSelect2"); | ||
const $TIPO_MANTISA = document.querySelector("#tipo_mantisa"); | ||
|
||
|
||
const output_Resolucion_Mantisa = document.querySelector("#output_Resolucion_Mantisa"); | ||
const btn2 = document.querySelector("#btn2"); | ||
const error2 = document.querySelector("#error-msg2"); | ||
|
||
const Numeros1 = document.querySelector("#Numeros1"); | ||
const Numeros2 = document.querySelector("#Numeros2"); | ||
const Numeros3 = document.querySelector("#Numeros3"); | ||
const Numeros4 = document.querySelector("#Numeros4"); | ||
|
||
const Resoluciones1 = document.querySelector("#Resoluciones1"); | ||
const Resoluciones2 = document.querySelector("#Resoluciones2"); | ||
const Resoluciones3 = document.querySelector("#Resoluciones3"); | ||
const Resoluciones4 = document.querySelector("#Resoluciones4"); | ||
RESOLUCION |
Oops, something went wrong.