Functions

JavaScript Functions

2025-01-08

  • 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 @ 2024 Anne Brown