How to shorten IF statement

say i have 3 MCs, and i need to check the frames on each one…


checkFrames = function() {
   if(mc1._currentframe == 1 && mc2._currentframe == 1 && mc3._currentframe == 1) {
            trace("match");
     }
}

Is there a more efficient way to write the same IF statement?