- , (, , ;-). apply, , "".
, apply, - * (arguments counts), [n1, n2, ... n3] f, f(n1, n2, ... n3). apply " ", ( , add ). . /.
,
var s = new Set(1, 2, 3)
var s = new Set()
s.add(1, 2, 3)
.
.
* FireFox 4 . :
f.apply(context, Array.prototype.slice.call(arguments, 0))
user166390