我正在尝试制作一个程序来组织来自谷歌表中的 RFID 扫描仪的打卡...
当我将扫描 [i] 与员工姓名 [j] 匹配时,它永远不会成功。
我有一个简单的 if 语句:
//names[i] is the name of the card for the scan event (card names = employee full name)
var name = names[i];
//the j for loop will check all employee names in the list for a match
var employee = employees[j];
if (name==employee) {
var ifsuccess = true;
}
但我从来没有得到 ifsuccess to = true ......这可能很明显,但我之前从未在谷歌脚本(或 javascript :P)中做过编程,有人知道我做错了什么吗?