-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
36 lines (32 loc) · 1.18 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
function toggleButton(){
const maxChar = 100;
const textarea = document.getElementById('text_id');
const button = document.getElementById('send_button');
const label_msg = document.getElementById('label_id');
if(textarea.value.trim() === ''|| textarea.value.length > maxChar){
button.disabled = true;
button.classList.add('btn-disabled');
button.classList.remove('btn');
}
else {
button.disabled = false;
button.classList.remove('btn-disabled');
button.classList.add('btn');
}
if(textarea.value.length > maxChar){
label_msg.classList.remove('none');
}else{
label_msg.classList.add('none');
}
}
function textToBinary(){
const text = document.getElementById('text_id').value
const result = document.getElementById('result_id')
//El párametro en toString(2) indica que lo transforma en 2, si es 10 en base 10.
//padStart como parametro recibe en largo del nuevo string y el segundo con qué se rellena
const binary = text.split('')
.map(letter => letter.charCodeAt(0)
.toString(2)
.padStart(8, '0')).join(' ')
return result.textContent = binary
}