JavaScript functions by slace August 07, 2011 JavaScript function fn() { console.log(arguments); }; fn(); fn(1); fn('a', 'b', 'c'); fn(fn);