为 Node.js 中的变量分配多个值

Assigning Multiple Values ​to a Variable in Node.js

const i = [1 || 2]
if (!message.channel.name.includes(o['opts' + i].identity.username.toLowerCase())) return message.channel.send('do commands only at <#bot-commands-id>');
console.log('oke');

如何给变量赋多个值?

const i = [1 || 2 || 3 || 4 || 5]

作为

您只需要使用一个数组,然后通过 i[index] 使用 for 循环访问所有索引来完成您的条件。

你的情况是:

const i = [1 ,2 ];
for (let j = 0 , j <= i.length , j++) {
   if (!message.channel.name.includes(o['opts' + i[j]].identity.username.toLowerCase())) return message.channel.send('do commands only at <#bot-commands-id>');
   console.log('oke');
}