// โญ๏ธ function's definition (compile-time)
function foo( param1, param2, ... ) { ... }
// โฐโโโ parameters โโโโโฏ
// โญ๏ธ values passed into function when called (run-time)
foo( 1, 'hello', false );
// โฐโโโ arguments โโโโฏ