in a javascript if...else statement, instead of checking if a variable equals (==) a value, is it possible to check if a variable includes a value?
var blah = unicorns are pretty;
if(blah == 'unicorns') {}; //instead of doing this,
if(blah includes 'unicorns') {}; //can i do this?
also, the word it includes should be the FIRST word of the variable. Thanks!!!