A history student & researcher turned frontend developer.
-> Mentoring -> Discussion on startup ideas
const numArray = [0,1,1,2,2,2,3,3,5,5,5] // input //expected output [0,1,2,3,5] Using the indexOf & filter method indexOf: MDN says, the indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is no...

As a developer, you've likely heard the term "DRY" being thrown around. DRY stands for "Don't Repeat Yourself," and it's a programming concept that advocates for code reusability and efficiency. In this blog post, we'll explore why a developer should...

When building web applications, developers have two options for rendering the user interface: client-side and server-side rendering. Each approach has its own advantages and disadvantages, and choosing the right one depends on the specific needs of t...
