Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 559 Bytes

File metadata and controls

18 lines (13 loc) · 559 Bytes

Complete this quiz in class.

  1. What is an immutable object?
  • An object defined as a constant
  • An object that cannot be modified after it's created
  • A copy of an existing object
  1. What benefit(s) you get from using state management?
  • You can keep track of every place the state is updated
  • It's easier to debug the code
  • All of the above
  1. What's the best way to persist critical user data across different sessions?
  • Using files
  • Using the browser's localStorage API
  • In a database behind a server API