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

325
Views
Can you assign mutiple values to this? and if so, how?

I'm trying to code a password variable that can hold multiple values so any of the following passwords can work and give access to the site.

var pass1="testpass1", "testpass2";

password=prompt('Whats the pass?',' ');

if (password==pass1)
  alert('ja');
else
   {
    alert('nein')
    window.location="https://google.com/";
}

I really need to figure this out.

Thank you!

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You could make pass1 an array and then use the .includes method like so:

let pass1=["testpass1", "testpass2"];

password=prompt('Whats the pass?');

if (pass1.includes(password)){
  alert('ja');
}
else{
    alert('nein')
    window.location="https://google.com/";
}
about 4 years ago · Juan Pablo Isaza 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!