Skip to content

Commit e83b9d1

Browse files
committed
conclusion: no entendi nada
1 parent b2bcaf8 commit e83b9d1

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<script src="../../../JavaScript/Arrays/Ejercicios/Ejercicios.js"></script>
10+
</body>
11+
</html>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//1
2+
3+
let array = ["Casa", "Perro", "Home", "Dog", "Elefante", "Cake"]
4+
5+
let nuevo = array.filter(function(e) {
6+
for (e.length >= 4) {
7+
return e;
8+
}
9+
})
10+
11+
//2
12+
13+
function checkInString(frase, buscar) {
14+
return frase.toLowerCase().includes(buscar.toLowerCase())
15+
}
16+
17+
let input = "Cualquier Frase para checkear"
18+
let encontrar = "frase"
19+
let resultado =

0 commit comments

Comments
 (0)