How to rewrite this code without continue?

 if (r.query.keyword.indexOf(this.keyList[i].name) >= 0) {
            continue;
          } else {
            this.keyList = this.keyList.slice(0, i);
            break;
          }

there is a for loop on the outside

Apr.27,2021

if (r.query.keyword.indexOf(this.keyList[i].name) < 0) {
     this.keyList = this.keyList.slice(0, i);
     break;
 }
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b427a8-40ba2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b427a8-40ba2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?