It's shorthand for: if the length of the string, p1, is equal to the value of a + 1, then the variable, pass, equals the variable, base; otherwise return "false".
or
Code:
if (p1.length==a+1) {
pass=base;
} else {
false;
}
Its a conditional. An alternate way of writing an If statement. It reads:
If p1.length is equal to a+1 then pass equals base otherwise false
----------------------------------
Phil AKA Vacunita
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.