Tinny function

[AS]myVar = 1;[/AS]
need to make this variable to work in a different way, under a function
why this won’t work?!

[AS]myFunction = function (who) {
who = 1;
};
myFunction(myVar);[/AS]
:look: