Chai assertion includes or for string

I am trying to traverse through a list of elements and want to assert that the body includes either of the 2 values.
I am trying to use the following but it only lets me assert one value.

expect(cellText).includes(toDateFormat);

How can I make an assertion that allows me to assert multiple values having OR condition?