Quote:
Originally posted by emortylone
Okay, I must admit I am QUITE confused. Are you saying functions aren't able to use vars?!?! What is the point of vars that ONLY can be read and edited by functions? It shouldn't matter because if you have a this.var and the only thing that modifies it is the functions, it works out. I guess I must be missing what you guys are saying...
---Shifter
|
in php and other programming languages(i think c and c++ as well) there are things such as params, like in php
function(showing,stuff);
if i called that and the function name was
function($1,$2){
echo "$1";
echo "$2";
}
it would display this
showing
stuff