Day 4/100
Today on the #100DaysOfCode challenge, I worked on Arrays and how to manipulate them. I was able to add and remove elements from the beginning, end and inbetween an array using built-in methods like .pop(), .push(), .splice(), etc.
I also worked with functions, and practicedusing function declarations versus function expressions. I also learnt how to create and use getter and setter functions.
And finally, how to use the 'this' keyword in my function. The this keyword simply references the parent object in which it is called.