Estou tentando comparar datas em uma coluna com a data atual usando o script abaixo, mas isso me dá um status indefinido
var toDay = new Date();
if (row[8] = toDay) {Department == "CRM";}
else if (row[9] = toDay) {Department == "DRG";}
else if (row[10] = toDay) {Department == "ESE";}
else if (row[11] = toDay) {Department == "GRT";}
else if (row[12] = toDay) {Department == "SEC";}
else if (row[13] = toDay) {Department == "PLC";}
else if (row[14] = toDay) {Department == "PPC";}
Como devo conseguir isso?