parathan.hashnode.dev12 Factor App: CodebaseCodebase: One codebase tracked in revision control, many deploys As a developer you might have already come across the version control system like Git, Mercurial and Subversion. What these version control system does is, provide developers to have ...Jun 23, 2022·1 min read
freecodecamp.orgObject Oriented Programming Concepts: How to go from Zero to One with ObjectsObject Oriented Programming is one of the most widely used programming paradigms. The name itself defines how it works. “Object Oriented” - the Object plays an important role. Manipulating objects and getting the results is the ultimate goal of Objec...Aug 7, 2019·6 min read
freecodecamp.orgA basic guide to Closures in JavaScriptThe Closure is a collection of all variables in scope at the time of function creation. To use closure, create a function inside another function which is called a Nested Function. The inner function will have access to the variables in the outer fun...May 3, 2019·4 min read
freecodecamp.orgHow to build a Rest API with Spring Boot using MySQL and JPAHi Everyone! For the past year, I have been learning JavaScript for full-stack web development. For a change, I started to master Java — the powerful Object Oriented Language. In that case, I found a very clean and elegant framework called Spring Boo...Mar 15, 2019·9 min read
freecodecamp.orgLet’s explore Slice(), Splice() & Spread Syntax(…) in JavaScriptI came across this freeCodeCamp challenge and got stuck for some time thinking about how I could find a way to solve it. They already mentioned solving using Slice & Splice. I was confused at that time when to use Slice and when to use Splice. Here, ...Jan 25, 2019·4 min read