As far as I know it is a reserved word only - not in use just yet.
-Ben "Alright whatever man, I'll hook up the hair, but I aint touchin the ring...Cause I'm still a pla--yer"
default is used in conjuction with the switch statement; if none of the conditions are met, it is executed... example below:
switch(x)
{
case 1:
//if x is one, this code is executed
break
case 4:
//if x is four, this code is executed
break
default:
//if x is neither, this code is executed
break;
} jared@aauser.com
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.