我得到的数据是:input
我需要找到匹配项并将其赋给变量
我怎么能这样做呢?
console.log(input) // three
var ard = {
one: `chekertest`,
two: `chekertest`,
three: `chekertest`,
four: `chekertest`,
}
let text = []
for (const input in ard) {
// ???? like return result
text += input
}
我做得很好,但不知道为什么对我不起作用。
1条答案
按热度按时间qaxu7uf21#
您没有指定是否需要一个值数组,但我假设您需要。这是否解决了您的问题?