What is the difference between calling exampleFunction() and exampleFunction.call() ? There is a feature on Actionscript that allows you to use functions through the 'call' method. For example, to use the 'test' function below, I could write test() and test.call()
function test():void {
trace('function was called')
}
What is the difference?