Whats this syntax useful for :
function(String... args)
Is this same as writing
function(String[] args) <
function(String[] args)
On the receiver size you will get an array of String. The difference is only on the calling side.