1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

if文でcontinueにエラーが出る?(JavaScript)

Last updated at Posted at 2022-03-02

if文でcontinueしようとした際にエラーに遭遇したのでその備忘録。

【エラー文】

Illegal continue statement: no surrounding iteration statement

(今回のコード)
  // - Likeボタンを押すと発動する関数
   // - 引数はLikeされたアーティスト名
  // - else内は配列にアーティストを追加する処理

function addFavorite(likedItem){
  
  if (favListArr.includes(likedItem)){
    continue;
  } else {
    favListArr.push(likedItem)
  }
}

【コードの内容】

(読まなくても問題なし)
  • (アーティスト一覧ページ内、各アーティストにLikeボタンが存在する仕様)
  • Likeしたアーティスト名は配列で管理

【やりたいこと】

好きなアーティストの配列に既に受け取った引数が存在していたらスキップ!!!
  ↓
  ↓
ふーむ、じゃあ普通にcontinueでスキップしてみたら?
  ↓

スクリーンショット 2022-03-02 午後4.28.10.png

....あれ?(ˉˡˍˉ )おかしいな〜


【結論】

調べたところ、continueはループ内でしか使えないそうです。
そうだった!忘れてた!!!!w

というわけで、普通にifで分岐させるだけの時はreturn; を記述すると良さそうです。


1
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?