Sign up to Heroku.
Then install the Heroku Toolbelt. It is a command line tool to manage your Heroku apps
After installing the Heroku Toolbelt, open a terminal and login to your account:
Sign up to Heroku.
Then install the Heroku Toolbelt. It is a command line tool to manage your Heroku apps
After installing the Heroku Toolbelt, open a terminal and login to your account:
============================================================================================================================== | |
ARRAY METHODS | |
============================================================================================================================== | |
const family = ['Malaika', 'Jahdai']; | |
arr.push() | |
==> add to end of array > family.push('Daaimah'); | |
==> mutates length > console.log(family); | |
==> return length of new array ['Malaika', 'Jahdai', 'Daaimah'] |