LIS2360 - Web App Development - Javascript Basics - Part 1

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ม.ค. 2025

ความคิดเห็น •

  • @thegreatdayne4776
    @thegreatdayne4776 4 ปีที่แล้ว

    I'm having trouble verifying if the string DOES NOT contain "password"
    I have the following: if (password.indexOf("password") ){
    return false;
    }
    but it should return true, how would I accomplish this? if (password.indexOf("password") __?___)

    • @mprabuw
      @mprabuw  4 ปีที่แล้ว

      It should return false if password.indexOf("password") != -1

    • @thegreatdayne4776
      @thegreatdayne4776 4 ปีที่แล้ว

      @@mprabuw Ah I see, I was trying to do if (password.indexOf("password") === -1 before. Thank you so much!