Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update ale #3435

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,46 @@
// Iteration 1: Names and Input

let hackerOne = "Ana";
console.log(`The driver's name is ${hackerOne}.`);


let hackerTwo = "Jose";
console.log(`The driver's name is ${hackerTwo}.`);


// Iteration 2: Conditionals


if (hackerOne.length > hackerTwo.length) {
console.log(`The driver has the longest name, it has ${hackerOne.length} characters.`);
}
else if (hackerOne.length < hackerTwo.length) {
console.log(`It seems that the navigator has the longest name, it has ${hackerTwo.length} characters.`);
}
else {
console.log(`Wow, you both have equally long names, ${hackerOne.length} characters!.`);
}

// Iteration 3: Loops

/*split(""): Divide la cadena en un array de caracteres individuales.
join(" "): Une esos caracteres de nuevo, pero esta vez con un espacio entre ellos.*/

let driverSplit = hackerOne.toUpperCase().split("").join(" ");
console.log(driverSplit);

/*cadenas de texto no tiene metodo reverse, por lo que hay que pasar cadena de texto a array con un *split*, luego *reverse* y volver a pasar a cadena de texto con *join**
aprovecho para pasarlo a minusculas con toLowerCase */
let navigatorReverse = hackerTwo.toLowerCase().split("").reverse().join("");
console.log(navigatorReverse);


if (hackerOne.localeCompare(hackerTwo) > 0) {
console.log(`The driver's name goes first.`);
}
else if (hackerOne.localeCompare(hackerTwo) < 0) {
console.log(`Yo, the navigator goes first, definitely.`);
}
else {
console.log(`What?! You both have the same name?`);
}