Created
December 28, 2019 00:55
-
-
Save Fhernd/86c1a9ae119510d896827faf2b553dde to your computer and use it in GitHub Desktop.
// Ejercicio 40: Uso del método $.map() para crear una lista de cadenas en mayúscula.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>jQuery - Ejercicios</title> | |
<link rel="stylesheet" href="css/styles.css"> | |
</head> | |
<body> | |
<h1>jQuery - Ejercicio 40</h1> | |
<h3>Lenguajes de programación</h3> | |
<p id="lenguajes"></p> | |
<script src="js/jquery-3.4.1.min.js"></script> | |
<script src="js/ex040-script.js"></script> | |
</body> | |
</html> |
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
// Ejercicio 40: Uso del método $.map() para crear una lista de cadenas en mayúscula. | |
$(document).ready(() => { | |
let lenguajes = ['JavaScript', 'Python', 'C++', 'Java', 'PHP', 'C']; | |
lenguajes = $.map(lenguajes, (valor, indice) => { | |
return `${indice + 1}. ${valor.toUpperCase()}`; | |
}); | |
// 1. JAVASCRIPT | |
// 2. PYTHON | |
// 3. C++ | |
// ... | |
$('#lenguajes').html(lenguajes.join('<br/>')); | |
}); |
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
.highlight{ | |
font-style: italic; | |
background-color: #ffff00; | |
} | |
.features{ | |
font-style: italic; | |
background-color: crimson; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment