I want to have it so the user is prompted to enter the second string, that will sort lower alphabetically than the first string. I don't understand how to make a string a number? Do I even need to do that?
function SortStringAlphabetically() {
// Declare variables
var stringOne = "";
var stringTwo = "";
var output;
// Get input from user
stringOne = prompt("Please enter a string");
stringTwo = prompt("Please enter enter a string that will sort lower alphabetically than the first string.");
// Convert input strings to numbers
stringOne = Number(stringOne);
stringTwo = Number(stringTwo);
if ( stringTwo > stringOne) {
output = "very good" + stringOne + "sorts lower than" + stringTwo + ".";
} else {
output = stringOne + "sorts higher than" + stringTwo + "try again";
}
document.write(output);
}
// Run the program
SortStringAlphabetically();
// END OF YOUR CODE