想象一下我有一个数组
arr = ["one", "two", "three"]
和逻辑
if "one" in arr
processOne()
if "two" in arr
processTwo()
if <<there is another items in array>>
processOthers()
我最后 应该写什么条件if
?我找到了_.difference
函数,但我不想多次编写元素(“一”、“二”……)。
编辑
if else if else
不适合,因为我需要调用 0..N 个过程函数。- 这是数组的示例。但是如果它是对象,这个代码会怎么样?
- 数组没有重复项