github.com/dream-ellie dream-ellie - Overview Don't forget to code your dream. dream-ellie has 9 repositories available. Follow their code on GitHub. github.com Function // Function // - fundamental building block in the program // - subprogram can be used multiple times // - performs a task or calculates a value // 1. Function declaration // function name(param1, param2) { body... return; } // ..