Monday, February 6, 2017

Array vs Variable


  • All the messages a user has sent
    • Array
  • The highest score a user has ever reached on the app
    • Variable
  • A username and password to unlock the app
    • Array

In general, when do you think you should you store information in an array, and when should you use a variable?

When it's only one or two values that are not related directly you should use a variable. Otherwise arrays work well.

No comments:

Post a Comment