Compare commits
9 Commits
main
...
feat/excer
| Author | SHA1 | Date | |
|---|---|---|---|
| e53d194942 | |||
| 641cbf7a73 | |||
| 894fbf39d3 | |||
| 8000f59a2c | |||
| 19fbf05d87 | |||
| 4a7c4871f6 | |||
| 28718fea20 | |||
| 927173b159 | |||
| 110ed42897 |
@@ -1 +1,10 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
|
||||||
|
document.getElementById('greet').addEventListener('click', () => {
|
||||||
|
const name = document.getElementById('name').value;
|
||||||
|
if (name.trim() === '') {
|
||||||
|
alert('Por favor, ingresa tu nombre.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
document.getElementById('greeting').textContent = `¡Hola, ${name}!`;
|
||||||
|
});
|
||||||
@@ -8,7 +8,10 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 1</h1>
|
<h1>Ejercicio 1</h1>
|
||||||
|
<label for="name">Nombre:</label>
|
||||||
|
<input type="text" id="name" name="name">
|
||||||
|
<button id="greet">Saludar</button>
|
||||||
|
<p id="greeting"></p>
|
||||||
<script src="ejercicio1.js"></script>
|
<script src="ejercicio1.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1,15 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
|
||||||
|
document.getElementById('addTask').addEventListener('click', () => {
|
||||||
|
const taskInput = document.getElementById('task');
|
||||||
|
const task = taskInput.value.trim();
|
||||||
|
if (task === '') {
|
||||||
|
alert('Por favor, ingresa una tarea.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const taskList = document.getElementById('taskList');
|
||||||
|
const li = document.createElement('li');
|
||||||
|
li.textContent = task;
|
||||||
|
taskList.appendChild(li);
|
||||||
|
taskInput.value = '';
|
||||||
|
});
|
||||||
@@ -8,7 +8,10 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 2</h1>
|
<h1>Ejercicio 2</h1>
|
||||||
|
<label for="task">Crea una nueva tarea:</label>
|
||||||
|
<input type="text" id="task" name="task">
|
||||||
|
<button id="addTask">Agregar tarea</button>
|
||||||
|
<ul id="taskList"></ul>
|
||||||
<script src="ejercicio2.js"></script>
|
<script src="ejercicio2.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1,7 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
|
||||||
|
document.getElementById('itemList').addEventListener('click', (event) => {
|
||||||
|
if (event.target.tagName === 'LI') {
|
||||||
|
event.target.classList.toggle('selected');
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -1,2 +1,5 @@
|
|||||||
/* Agregar el código CSS necesario para el ejercicio */
|
/* Agregar el código CSS necesario para el ejercicio */
|
||||||
|
|
||||||
|
.selected {
|
||||||
|
background-color: lightblue;
|
||||||
|
}
|
||||||
@@ -8,7 +8,14 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 3</h1>
|
<h1>Ejercicio 3</h1>
|
||||||
|
<ul id="itemList">
|
||||||
|
<li>Elemento 1</li>
|
||||||
|
<li>Elemento 2</li>
|
||||||
|
<li>Elemento 3</li>
|
||||||
|
<li>Elemento 4</li>
|
||||||
|
<li>Elemento 5</li>
|
||||||
|
<li>Elemento 6</li>
|
||||||
|
</ul>
|
||||||
<script src="ejercicio3.js"></script>
|
<script src="ejercicio3.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1,33 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
|
||||||
|
const incrementButton = document.getElementById('increment');
|
||||||
|
const decrementButton = document.getElementById('decrement');
|
||||||
|
const counterDisplay = document.getElementById('counter');
|
||||||
|
|
||||||
|
let counter = 0;
|
||||||
|
|
||||||
|
incrementButton.addEventListener('click', () => {
|
||||||
|
if (counter >= 10) {
|
||||||
|
incrementButton.disabled = true;
|
||||||
|
alert('El contador ha alcanzado el valor máximo de 10.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
counter++;
|
||||||
|
if (counter > 0) {
|
||||||
|
decrementButton.disabled = false;
|
||||||
|
}
|
||||||
|
counterDisplay.textContent = counter;
|
||||||
|
});
|
||||||
|
|
||||||
|
decrementButton.addEventListener('click', () => {
|
||||||
|
if (counter <= 0) {
|
||||||
|
decrementButton.disabled = true;
|
||||||
|
alert('El contador ha alcanzado el valor mínimo de 0.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
counter--;
|
||||||
|
if (counter < 10) {
|
||||||
|
incrementButton.disabled = false;
|
||||||
|
}
|
||||||
|
counterDisplay.textContent = counter;
|
||||||
|
});
|
||||||
@@ -8,7 +8,9 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 4</h1>
|
<h1>Ejercicio 4</h1>
|
||||||
|
<p> Contador: <span id="counter">0</span></p>
|
||||||
|
<button id="increment">Incrementar</button>
|
||||||
|
<button id="decrement">Decrementar</button>
|
||||||
<script src="ejercicio4.js"></script>
|
<script src="ejercicio4.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1,45 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
|
||||||
|
const countries = [
|
||||||
|
'Argentina',
|
||||||
|
'Brasil',
|
||||||
|
'Chile',
|
||||||
|
'Colombia',
|
||||||
|
'Ecuador',
|
||||||
|
'Perú',
|
||||||
|
'Uruguay',
|
||||||
|
'Venezuela',
|
||||||
|
'Paraguay',
|
||||||
|
'Bolivia',
|
||||||
|
'Panamá',
|
||||||
|
'Costa Rica',
|
||||||
|
'Cuba',
|
||||||
|
'República Dominicana',
|
||||||
|
'Guatemala',
|
||||||
|
'Honduras',
|
||||||
|
'El Salvador',
|
||||||
|
'Nicaragua',
|
||||||
|
'Puerto Rico',
|
||||||
|
'México',
|
||||||
|
'Estados Unidos',
|
||||||
|
'Canadá',
|
||||||
|
'Guayana',
|
||||||
|
'Surinam',
|
||||||
|
'Guyana Francesa',
|
||||||
|
];
|
||||||
|
|
||||||
|
document.getElementById('search').addEventListener('input', () => {
|
||||||
|
const query = document.getElementById('search').value.toLowerCase();
|
||||||
|
const resultsList = document.getElementById('resultsList');
|
||||||
|
resultsList.innerHTML = '';
|
||||||
|
|
||||||
|
const filteredCountries = countries.filter(country =>
|
||||||
|
country.toLowerCase().includes(query)
|
||||||
|
);
|
||||||
|
|
||||||
|
filteredCountries.forEach(country => {
|
||||||
|
const li = document.createElement('li');
|
||||||
|
li.textContent = country;
|
||||||
|
resultsList.appendChild(li);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -8,7 +8,11 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 5</h1>
|
<h1>Ejercicio 5</h1>
|
||||||
|
<div id="results">
|
||||||
|
<label for="search">Buscar:</label>
|
||||||
|
<input type="text" id="search" name="search">
|
||||||
|
<ul id="resultsList"></ul>
|
||||||
|
</div>
|
||||||
<script src="ejercicio5.js"></script>
|
<script src="ejercicio5.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1,43 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
const employees = [
|
||||||
|
{ name: "Ana", sector: "Desarrollo", salary: 150000 },
|
||||||
|
{ name: "Luis", sector: "Diseño", salary: 120000 },
|
||||||
|
{ name: "Marta", sector: "Desarrollo", salary: 160000 },
|
||||||
|
{ name: "Carlos", sector: "RRHH", salary: 110000 },
|
||||||
|
{ name: "Julia", sector: "Diseño", salary: 130000 }
|
||||||
|
];
|
||||||
|
|
||||||
|
const tableContainer = document.getElementById('tableEmployees');
|
||||||
|
|
||||||
|
const table = document.createElement('table');
|
||||||
|
const headerRow = document.createElement('tr');
|
||||||
|
|
||||||
|
['Nombre', 'Sector', 'Salario'].forEach(headerText => {
|
||||||
|
const th = document.createElement('th');
|
||||||
|
th.textContent = headerText;
|
||||||
|
headerRow.appendChild(th);
|
||||||
|
});
|
||||||
|
table.appendChild(headerRow);
|
||||||
|
tableContainer.appendChild(table);
|
||||||
|
|
||||||
|
employees.forEach(employee => {
|
||||||
|
const row = document.createElement('tr');
|
||||||
|
['name', 'sector', 'salary'].forEach(key => {
|
||||||
|
const td = document.createElement('td');
|
||||||
|
td.textContent = employee[key];
|
||||||
|
row.appendChild(td);
|
||||||
|
});
|
||||||
|
table.appendChild(row);
|
||||||
|
});
|
||||||
|
|
||||||
|
table.appendChild(document.createElement('tr')); // Fila vacía para separación
|
||||||
|
|
||||||
|
const averageSalary = employees.reduce((sum, emp) => sum + emp.salary, 0) / employees.length;
|
||||||
|
const averageRow = document.createElement('tr');
|
||||||
|
const averageLabelCell = document.createElement('td');
|
||||||
|
averageLabelCell.textContent = 'Salario Promedio';
|
||||||
|
averageRow.appendChild(averageLabelCell);
|
||||||
|
const averageValueCell = document.createElement('td');
|
||||||
|
averageValueCell.textContent = averageSalary;
|
||||||
|
averageRow.appendChild(averageValueCell);
|
||||||
|
table.appendChild(averageRow);
|
||||||
|
|||||||
@@ -8,7 +8,9 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 6</h1>
|
<h1>Ejercicio 6</h1>
|
||||||
|
<div id="tableEmployees">
|
||||||
|
|
||||||
|
</div>
|
||||||
<script src="ejercicio6.js"></script>
|
<script src="ejercicio6.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1,24 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
|
||||||
|
const userForm = document.getElementById('userForm');
|
||||||
|
|
||||||
|
userForm.addEventListener('submit', (event) => {
|
||||||
|
event.preventDefault();
|
||||||
|
const username = document.getElementById('username').value.trim();
|
||||||
|
const age = parseInt(document.getElementById('age').value);
|
||||||
|
const password = document.getElementById('password').value;
|
||||||
|
if (username === '') {
|
||||||
|
alert('El nombre de usuario no puede estar vacío.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (isNaN(age) || age < 0 || age > 100) {
|
||||||
|
alert('La edad debe ser un número válido entre 0 y 100.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (password.length < 8) {
|
||||||
|
alert('La contraseña debe tener al menos 8 caracteres.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
alert('Formulario enviado correctamente.');
|
||||||
|
userForm.reset();
|
||||||
|
});
|
||||||
@@ -8,7 +8,15 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 7</h1>
|
<h1>Ejercicio 7</h1>
|
||||||
|
<form id="userForm">
|
||||||
|
<label for="username">Nombre de usuario:</label>
|
||||||
|
<input type="text" id="username" name="username" required>
|
||||||
|
<label for="age">Edad:</label>
|
||||||
|
<input type="number" id="age" name="age" required>
|
||||||
|
<label for="password">Contraseña:</label>
|
||||||
|
<input type="password" id="password" name="password" required>
|
||||||
|
<button type="submit">Enviar</button>
|
||||||
|
</form>
|
||||||
<script src="ejercicio7.js"></script>
|
<script src="ejercicio7.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1,68 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
|
||||||
|
const products = [
|
||||||
|
{ name: "Teclado", price: 8500 },
|
||||||
|
{ name: "Mouse", price: 4200 },
|
||||||
|
{ name: "Monitor", price: 62000 },
|
||||||
|
{ name: "Auriculares", price: 11000 },
|
||||||
|
{ name: "Webcam", price: 15500 }
|
||||||
|
];
|
||||||
|
|
||||||
|
const productList = document.getElementById('productList');
|
||||||
|
const checkout = document.getElementById('checkout');
|
||||||
|
|
||||||
|
products.forEach(product => {
|
||||||
|
const productDiv = document.createElement('div');
|
||||||
|
productDiv.textContent = `${product.name} - $${product.price} `;
|
||||||
|
const buyButton = document.createElement('button');
|
||||||
|
buyButton.textContent = 'Comprar';
|
||||||
|
productDiv.appendChild(buyButton);
|
||||||
|
productList.appendChild(productDiv);
|
||||||
|
});
|
||||||
|
|
||||||
|
const cart = new Map();
|
||||||
|
|
||||||
|
const renderCart = () => {
|
||||||
|
checkout.innerHTML = '';
|
||||||
|
|
||||||
|
if (cart.size === 0) {
|
||||||
|
checkout.innerHTML = '<p>Carrito vacío</p>';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let totalPrice = 0;
|
||||||
|
|
||||||
|
cart.forEach((quantity, product) => {
|
||||||
|
const lineTotal = product.price * quantity;
|
||||||
|
totalPrice += lineTotal;
|
||||||
|
|
||||||
|
const itemRow = document.createElement('div');
|
||||||
|
itemRow.innerHTML = `
|
||||||
|
<div>${product.name} -------- x${quantity}</div>
|
||||||
|
<div>$${lineTotal.toLocaleString()}</div>
|
||||||
|
`;
|
||||||
|
checkout.appendChild(itemRow);
|
||||||
|
});
|
||||||
|
|
||||||
|
const totalRow = document.createElement('div');
|
||||||
|
totalRow.innerHTML = `<strong>Total: ------------- $${totalPrice.toLocaleString()}</strong>`;
|
||||||
|
checkout.appendChild(totalRow);
|
||||||
|
};
|
||||||
|
|
||||||
|
productList.addEventListener('click', (event) => {
|
||||||
|
if (event.target.tagName === 'BUTTON') {
|
||||||
|
const productDiv = event.target.parentElement;
|
||||||
|
const productName = productDiv.textContent.split(' - ')[0];
|
||||||
|
const product = products.find(p => p.name === productName);
|
||||||
|
|
||||||
|
if (!product) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const currentQty = cart.get(product) || 0;
|
||||||
|
cart.set(product, currentQty + 1);
|
||||||
|
renderCart();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
renderCart();
|
||||||
@@ -8,7 +8,12 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 8</h1>
|
<h1>Ejercicio 8</h1>
|
||||||
|
<div id="productList">
|
||||||
|
<!-- Acá se mostrarán los productos -->
|
||||||
|
</div>
|
||||||
|
<div id="checkout">
|
||||||
|
<!-- Acá se mostrará el precio total -->
|
||||||
|
</div>
|
||||||
<script src="ejercicio8.js"></script>
|
<script src="ejercicio8.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1,80 @@
|
|||||||
// Agregar aquí el código javascript
|
// Agregar aquí el código javascript
|
||||||
|
|
||||||
|
const questions = [
|
||||||
|
{
|
||||||
|
question: "¿Cuál es la capital de Francia?",
|
||||||
|
options: ["Londres", "Berlín", "París", "Roma"],
|
||||||
|
correctAnswer: 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
question: "¿Cuál es el río más largo del mundo?",
|
||||||
|
options: ["Nilo", "Amazonas", "Yangtsé", "Misisipi"],
|
||||||
|
correctAnswer: 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
question: "¿Quién escribió 'Cien años de soledad'?",
|
||||||
|
options: ["Gabriel García Márquez", "Mario Vargas Llosa", "Isabel Allende", "Jorge Luis Borges"],
|
||||||
|
correctAnswer: 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
question: "¿Cuál es el planeta más grande del sistema solar?",
|
||||||
|
options: ["Júpiter", "Saturno", "Urano", "Neptuno"],
|
||||||
|
correctAnswer: 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
question: "¿En qué año se descubrió América?",
|
||||||
|
options: ["1492", "1500", "1485", "1510"],
|
||||||
|
correctAnswer: 0
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
let currentQuestionIndex = 0;
|
||||||
|
let score = 0;
|
||||||
|
|
||||||
|
const questionElement = document.getElementById('question');
|
||||||
|
const optionsElement = document.getElementById('options');
|
||||||
|
const resultElement = document.getElementById('result');
|
||||||
|
|
||||||
|
const loadQuestion = () => {
|
||||||
|
const currentQuestion = questions[currentQuestionIndex];
|
||||||
|
questionElement.textContent = currentQuestion.question;
|
||||||
|
optionsElement.innerHTML = '';
|
||||||
|
currentQuestion.options.forEach((option, index) => {
|
||||||
|
const li = document.createElement('li');
|
||||||
|
const button = document.createElement('button');
|
||||||
|
button.textContent = option;
|
||||||
|
li.appendChild(button);
|
||||||
|
button.addEventListener('click', () => checkAnswer(index));
|
||||||
|
optionsElement.appendChild(li);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const checkAnswer = (selectedIndex) => {
|
||||||
|
const currentQuestion = questions[currentQuestionIndex];
|
||||||
|
if (selectedIndex === currentQuestion.correctAnswer) {
|
||||||
|
resultElement.textContent = "¡Correcto!";
|
||||||
|
score++;
|
||||||
|
currentQuestionIndex++;
|
||||||
|
if (currentQuestionIndex < questions.length) {
|
||||||
|
setTimeout(() => {
|
||||||
|
resultElement.textContent = '';
|
||||||
|
loadQuestion();
|
||||||
|
}, 1000);
|
||||||
|
} else {
|
||||||
|
resultElement.textContent = `¡Juego terminado! Tu puntuación es ${score}/${questions.length}.`;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
resultElement.textContent = "Incorrecto. La respuesta correcta es: " + currentQuestion.options[currentQuestion.correctAnswer];
|
||||||
|
currentQuestionIndex++;
|
||||||
|
if (currentQuestionIndex < questions.length) {
|
||||||
|
setTimeout(() => {
|
||||||
|
resultElement.textContent = '';
|
||||||
|
loadQuestion();
|
||||||
|
}, 2000);
|
||||||
|
} else {
|
||||||
|
resultElement.textContent = `¡Juego terminado! Tu puntuación es ${score}/${questions.length}.`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
loadQuestion();
|
||||||
@@ -8,7 +8,12 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Ejercicio 9</h1>
|
<h1>Ejercicio 9</h1>
|
||||||
|
<div id="quizGame">
|
||||||
|
<p id="instructions">Responde a la pregunta correcta</p>
|
||||||
|
<p id="question"></p>
|
||||||
|
<ul id="options"></ul>
|
||||||
|
<p id="result"></p>
|
||||||
|
</div>
|
||||||
<script src="ejercicio9.js"></script>
|
<script src="ejercicio9.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user