Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

172
Views
How to you make a string variable, that goes by it's number? For example uppercase A is 65. ASCII Charts

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

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!