JAVASCRIPT question
JAVASCRIPT question
Out of context: Reply #4
- Started
- Last post
- 8 Responses
- mekk0
your if-statement is wrong, that statement requires something like:
if (variableXXX < variableYYY) {
do this
}
else {
do this shit
}== means is equal
=! means is NOT equal
&& means AND
&| means AND OR
|| means OR
< means smaller than
> means.. now what? ;)