If statements

yeah hi, say i want something to happen, but I only want it to happen if more than two conditions are satisfied…is there a way to use multiple “if” statements?

if(statement1 and statement2 and statement3){\rdoMe();\r}\r\ror\r\rif(statement1 && statement2 && statement3){\rdoMe();\r}\r\ror\r\rstatement1 && statement2 && statement3 ? doMe() : null;\r\rwhere the statements are you conditions and doMe is what you want to do.\r:) \rjeremy

thanks a lot…i figured it could be done, but i wasn’t sure how to put in the statements. thanks

This was my exact question long ago and no one helped me. Thank you so much, I appreciate it.