JavaScript functions

by slace

JavaScript

function fn() {
    console.log(arguments);
};
fn();
fn(1);
fn('a', 'b', 'c');
fn(fn);