The Past Three Weeks of My Internship
In this blog, I will be covering what I did in the past three weeks as I kind of forgot to do my blog. Although, I'm just combining all the knowledge that I have gained from these past three weeks. To begin, I mainly stayed around completing "Abstraction and Inheritance" for about two weeks, as I was very confused, but soon ended up figuring out what exactly it was that I was doing. Now, what is abstracting code? Well, abstracting code is making it so we can set chunks of our code into classes. One would call a class for example 'class Character.' Everything within this code would be inside the constructor. It would look like 'constructor() {(**Code Here)}.' Since we define that the class is called Character, all of the lines of code that have the word 'character' are replaced with the word 'this' as we don't want to repeat our code and it is unnecessary if one is already calling the same name for the class. After this, I learned about ...