Device Sync

This commit is contained in:
2025-12-18 22:14:29 -05:00
38 changed files with 3055 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
<<<<<<< HEAD
function showDetails() {
var firstName = document.getElementById("firstNameBox").value;
var lastName = document.getElementById("lastNameBox").value;
@@ -11,4 +12,19 @@ function showDetails() {
console.log(10 - 3);
console.log(100 / 25);
console.log(100 % 3);
=======
function showDetails() {
var firstName = document.getElementById("firstNameBox").value;
var lastName = document.getElementById("lastNameBox").value;
var age = Number(document.getElementById("ageBox").value);
var password = document.getElementById("passwordBox").value;
console.log(`You entered: ${firstName}, ${lastName}, ${age}, ${password}`);
document.getElementById("detailsLabel").innerHTML += `${firstName}, ${lastName}, ${age}, ${password}`;
console.log(10 + 10);
console.log(10 * 10);
console.log(10 - 3);
console.log(100 / 25);
console.log(100 % 3);
>>>>>>> a2ad5843006c62096be10203d3f91faa39f365fb
}