reading-notes

Reading Notes for Codefellows

View the Project on GitHub kylecohen14/reading-notes

Passing Functions as Props

React Docs - list and keys

  1. TCreats a new array that uses the results from called fucntion on every element in the called array
  2. {}
  3. Key
  4. Help react identify changes. Giving a stable identity

The spread Operator

  1. Syntax used for arrays to add items, combine diffrent arrays or objexcts, or spreading array into functions arguments
  2. Combinnig objects, converting NodeList to an array, adding an item to a list, using math functions
  3. Video: How to pass functions between Components

CITE