#javascript
Read more stories on Hashnode
Articles with this tag
I understand a lot of companies require algorithms for their interview and for the longest time, I have avoided it. But today, for the third time, I...
Today, I will talk about inheritance. It's very important in Object Oriented Programming. Here is an example: The parent is animalFarm. The parent...
In my previous article, I talked about encapsulation . Today, I will talk about abstraction. Abstraction is simply showing the essentials. For...
Today, I'm going to explain encapsulation. If you google it, it gives you a definition of encapsulation: In object-oriented computer programming...
Today's problem was: Simple, remove the spaces from the string, then return the resultant string. I remember doing this a long time ago but I...
One of the problems I did on Codewars today was to add the two smallest numbers in an array. The array was [19, 5, 42, 2, 77]. It has been literally...