How to make a list of multiple variables in Javascript

Hi so I have a question that relates to a project that I am doing this is a example:

var result = 2;
var result1 = 3;
var result2 = 1;
var result3 = 5;
if (1 == (result,result1,result2,result3)){
    console.log("correct")  
}else{
  console.log("wrong")
}

so what I want this to is check all of the variables to see if any of them is equal to zero. Right now it does not check all of the variables. Thanks