Functions
JavaScript Functions
- Functions are objects with attribs and logic
 - Can be passed as args into oth functions
 - can be assigned to variables
 - can receive results
 
const sum = (a, b) => b + a;
Copyright @ 2025 Anne Brown
JavaScript Functions
const sum = (a, b) => b + a;
Copyright @ 2025 Anne Brown