これは、配列内の値の存在を検索する方法です。
words = ["rattled", "roudy", "rebbles", "ranks"]
alert "Stop wagging me" if "ranks" in words
指定されたプロパティ値を持つオブジェクトの存在を検索する際に、同様の優雅さを探しています:
words = [
{ id: 1, value: "rattled" },
{ id: 2, value: "roudy" },
{ id: 3, value: "rebbles" },
{ id: 4, value: "ranks" }
]
alert "Stop wagging me" if "ranks" in words.value
しかし、一番下の行は機能しません。