Hi Simple Question: How do i add an argument to my If Statement, for example I have: if (blah == null) But How do I say if (blah==null or if blah > 10 ) I know && is if both arguments are true, but one or the other could be true!! Would the word "or" work or do i use a comma or what?!?!?!?!?
I'm not sure about Javascript but in most languages it is ||, try that out. if (blah==null || blah > 10 )
Many Thanks it seems to be working for now!! I'm using Java not Javascript but it's all the same afaik!!