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

178
Views
which is the proper syntax for javascript?
var age = prompt("Enter your age");
  if (age < 18){
   alert("Sorry, you are too yound to drive this car. Powering off");
   }
  else if (age > 18){
   alert("Powering On. Enjoy the ride!");
   }
  else if(age == 18){
   alert("Congratulations on your first year of driving. Enjoy the ride!");
   }

or

var age = prompt("What is your age?");

  if (Number(age) < 18) {
    alert("Sorry, you are too yound to drive this car. Powering off");
  } 
  else if (Number(age) > 18) {
    alert("Powering On. Enjoy the ride!");
  } 
  else if (Number(age) === 18) {
    alert("Congratulations on your first year of driving. Enjoy the ride!");
  }

which of the syntax is better? and why?...relating to the Boolean condition of the if/else...if statement

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

That is not a question of syntax, the code you provided is good in any cases. However, if you want an accurate result and a clean code, you should transform your prompted result into a number. Keep in mind that Javascript in a dynamic typed language, so if the number as a string is compared to a number, they both will be compared as string.

about 4 years ago · Santiago Trujillo Report
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!