Forum Discussion
YMinaev
Staff
14 years agoHi,
Use code like this:
If this is not what you want, clarify your request.
Use code like this:
function myFunctionWhichAcceptsAParameter(myParameter)
{
// do something
}
function Main()
{
var myValueWhichIWillUseAsAParameter = "something";
myFunctionWhichAcceptsAParameter(myValueWhichIWillUseAsAParameter);
}
If this is not what you want, clarify your request.