-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
332 lines (239 loc) · 7.58 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
// let Pikachu = 40;
// var Charmander = 60;
// {
// let Pikachu = 0.4;
// var Charmander = 0.6;
// console.log(Pikachu, Charmander);
// // Pikachu: 0.4, Charmander: 0.6
// }
// console.log(Pikachu, Charmander);
// // Pikachu: 40, Charmander: 0.6
//ARROW FUNCTIONS
// function Sumar (a, b) {
// return a + b;
// };
// const Sumar = (a, b) => {
// return a + b;
// }
// const Sumar = (a, b) => a + b;
// const ContarSaludar = (a, b) => {
// for(let i = a; i <= b; i++){
// console.log(i)
// }
// console.log(`Hola, has contado hasta ${b}, espero que te hayas divertido.`)
// }
// const Admitir = (edad, film) => {
// if(edad >= 18 && film === "The Matrix"){
// console.log(`Hola, bienvenido a la película`)
// return true;
// }
// return false;
// }
// const Sumar = (a, b) => {
// return a + b;
// }
// const Saludar = nombre => console.log(nombre)
// //Estas dos funciones Saludar hacen exactamente lo mismo.
// function Saludar (nombre) {
// return console.log(nombre)
// }
//Si lo que devuelves en la función es un objeto, debes de envolverlo en paréntesis
// const Pokemon = nombre => ({Pokemon: nombre})
// console.log(Pokemon("Charmander"))
/////////////////////////
////////MAP/////////////
///////////////////////
// let bebida = ["nestea", "fanta", "coca-cola", "sprite", "agua"];
// let bebidas = bebida.map(elemento => elemento + 's');
// console.log(bebida)
// const impuestos = (valor, tasa = 0.21) => valor + (valor*tasa);
// console.log(impuestos(10, 0.16))
// const Robot = (letras = "RX") => letras + (Math.floor(Math.random() * 999) + 1);
// const Robot = (res = Math.floor(Math.random() * 999)+1 , letras = "RX") => res < 100 ? letras + "0" +res : letras + res
// for(let i = 0; i < 5; i++){
// console.log(Robot())
// }
// //SPREAD
// const habilidades = (name, ps, atk, def, speed) => {
// console.log("Nombre: ", name);
// console.log("Vida: ", ps);
// console.log("Ataque: ", atk);
// console.log("Defensa: ", def);
// console.log("Velocidad: ", speed);
// }
// let Pokemon = ["Pikachu", 35, 55, 40, 90]
// // habilidades(Pokemon[0], Pokemon[1], Pokemon[2], Pokemon[3], Pokemon[4])
// habilidades(...Pokemon)
//REST
// const FuncionConRest = (...Argumentos) => {
// console.log(Argumentos.length)
// }
// FuncionConRest(1, 2, 3, 4, 5);
// FuncionConRest(1,2);
// FuncionConRest(1,2,3,4,5,6,7,8,9,10);
//DESESTRUCTURACIÓN
// let comida = ["verdura", "fruta", "pescado"];
// let [primera, segunda, tercera] = comida;
// console.log(primera, segunda, tercera);
// let abraham = {
// hobbie1: "programar",
// hobbie2: "matematicas",
// hobbie3: "algebra"
// }
// let {hobbie1: uno, hobbie2: dos, hobbie3: tres} = abraham;
// let {hobbie1} = abraham;
// console.log(hobbie1);
// //INTERPOLACIÓN
// let nombre = "Santiago";
// console.log(`Hola ${nombre}`);
//FOR OF.... Y FOR IN COMO ALTERNATIVAS AL FOR
// let animales = ["panda", "lince", "koala", "tigre", "gato"];
// for(let i = 0; i < animales.length; i++){
// console.log(animales[i])
// }
// //FOR OF...
// for(let animal of animales){
// console.log(animal)
// }
//FOR IN
// for (let indice in animales) {
// console.log(indice);
// }
//EL FOR IN RECORRE OBJETOS...MAGICCCCCC
// let bebidas2 = {
// bebida1: "fernet",
// bebida2: "agua",
// bebida3: "sangria",
// bebida4: "zumo de manzana",
// bebida5: "tequila rosa",
// };
// for(let drink in bebidas2){
// console.log(bebidas2[drink])
// }
// let colores = ["rojo", "verde", "negro", "azul", "amarillo"];
// console.log(colores.includes("negro"))
// let coche = {
// marca: "Nissan",
// //[marca, nissan]
// year: 2020,
// //[year, 2020]
// motor: "gasolina",
// //[motor, gasolina]
// color: "blanco",
// //[color, blanco]
// new: true,
// //[new, true]
// };
// Object.entries(coche).map(([clave, valor], index) =>
// console.log(`${clave} en la posicion ${index}`)
// );
// console.log("las naves".padStart(20, "@"))
// console.log("las naves".padEnd(20, "@"))
// let arrayArrays = [1,2,3,4,[5,6,7,[8,9,10]]];
// console.log(arrayArrays.flat())
//EJEMPLO DE MAP
// let peliculas = [
// {title:"La momia 1" , year: 2020, adult: false},
// {title:"La momia 2" , year: 2021, adult: false},
// {title:"La momia 3" , year: 2022, adult: false},
// {title:"La momia 4" , year: 2023, adult: false}
// ]
// peliculas.map(
// pelicula => {
// console.log(pelicula.title, pelicula.adult)
// }
// )
//OBJECT...FROMENTRIES
// let arrayDeArrays = [
// ["deporte","boxeo"],["comida","hamburguesa"],["pelicula","dracula"]
// ]
// console.log(Object.fromEntries(arrayDeArrays))
// Escribe una función que devuelva el último elemento de un array. Además, debe tener
// otro parámetro opcional que, en caso de pasarse, devolvería esa cantidad de números
// empezando por el final. Es decir, si mi array es [1, 2, 3, 4, 5] y yo le paso el 3 como
// parámetro, debe devolverme [3, 4, 5] y, si no le paso nada como parámetro, debe
// devolverme solo el 5.
// const LastArray = (array, cantidad = 1) => {
// if(Array.isArray(array) && (cantidad >=1 && cantidad <= array.length)){
// return array.reverse().slice(0, cantidad);
// } else {
// return "wrong cantidad"
// }
// };
// console.log(LastArray([1, 2, 3, 4, 5, 6, 7, 8], 2));
// Escribe una función que, dado un array de números, devuelva una string con todos
// esos números e inserte guiones entre los números pares. Es decir, dado el array [0, 2,
// 3, 4, 6, 7, 8], me devolvería “0 2 3 4-6 7 8”
// const ArrayPares = (array) => {
// if(Array.isArray(array)){
// //[0,2,3,4,6,7,8]
// const newArray = array.map(
// (numero,i) => {
// return (((numero !== 0) && (numero % 2 === 0)) && ((array[i+1] !== 0) && (array[i+1] % 2 === 0)))
// ? numero + ' -'
// : numero
// }
// )
// return newArray.join(" ")
// } else {
// console.log("loco!!!!")
// }
// }
// console.log(ArrayPares([0,2,3,4,6,0,7,8,0]))
// Dado un array con elementos repetidos, determina qué elemento es el más frecuente
// y cuántas veces se ha repetido
// let result = {};
// for(let i = 0; i < comida.length; i++){
// let num = comida[i];
// result[num] = result[num] ? result[num] + 1 : 1;
// }
// console.log(result);
//alternativa 2....
// let comida = ["patatas", "hamburgesas", "tortitas", "pizzas", "tortitas", "tortitas", "paella", "pizzas"];
// let comida = [
// "patatas",
// "hamburgesas",
// "tortitas",
// "pizzas",
// "tortitas",
// "tortitas",
// "paella",
// "pizzas",
// "tortitas",
// ];
// let result = {};
// for (let i = 0; i < comida.length; i++) {
// let num = comida[i];
// if (num in result === false) {
// for (let x = 0; x < comida.length; x++) {
// if (comida[x] === num && x !== i) {
// //esto demuestra que hay más de 1.
// result[num] = result[num] ? result[num] + 1 : 2;
// }
// }
// }
// }
// console.log(result);
// let miercoles = {
// year: 2024,
// month: "June",
// happy: true
// }
// let newMiercoles = JSON.stringify(miercoles);
// console.log(newMiercoles)
// console.log(JSON.parse(newMiercoles))
// let miNuevoArray = ["ford", "ferrari", "rover"];
// let res = JSON.parse(miNuevoArray)
// console.log(res)
let Santiago = {
ciudad : "Valencia",
hobbies : {
hobbie1 : "programar",
hobbie2 : "correr",
hobbie3 : {
caro: true,
feliz: true
}
}
}
console.log(Santiago.hobbies.hobbie2?.caro)