Skip to content

Functions

Description

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;

Comments