forked from Launch-X-Latam/MisionFrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2.-funciones.js
101 lines (75 loc) · 1.8 KB
/
2.-funciones.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const cuadrado = function(x) {
return x * x;
}
let numero = 4;
console.log(cuadrado(numero));
const ruido = function () {
console.log("kataplum!");
}
ruido();
const exponencial = function (base, exponente) {
let resultado = 1;
for (let i = 0; i < exponente; i++){
resultado *= base;
}
return resultado;
}
console.log(exponencial(4,3))
console.log(sumar(5,65));
function sumar(x, y) {
return x + y;
}
const restar = (a, b) => {
return a - b;
}
console.log(restar(40, 8));
function saludar(quien) {
console.log("Hola " + quien);
return;
}
saludar("Explorer");
console.log("Bye");
//Excepciones
function preguntaDireccion(pregunta) {
let result = prompt(pregunta);
if (result.toLowerCase() == "izquierda") return "I";
if (result.toLowerCase() == "derecha") return "D";
throw new Error("Dirección inválida: " + result);
}
function mirar() {
if (preguntaDireccion("A que lado?") == "I") {
return "una casa";
} else {
return "2 osos hambrientos";
}
}
try {
console.log("Mira a ", mirar());
} catch (error) {
console.log("Hubo un error: " + error);
}
//Asincrono
setTimeout(() => console.log("Tick"), 500);
let fifteen = Promise.resolve(15);
fifteen.then(value => console.log(`Got ${value}`));
const promesa = () =>
new Promise((resolve, reject) =>
setTimeout(
() => (resolve(console.log('Todo cool')), reject(new Error('oops'))),
2000
)
)
async function main() {
// promesa()
// .then(() => {
// promesa()
// .then(() => console.log('hola'))
// .catch((err) => console.error(err))
// })
// .catch((err) => console.error(err))
await promesa();
console.log('Aquí termina la primer promesa');
await promesa();
console.log('Aquí termina la segunda promesa');
}
main();