AKAyush Kumarinblog.ayushcode.me·Jun 19 · 3 min readTemplate Literals in JavaScript Explained with ExamplesBefore we know what template literals are, it is important to know why template literals were introduced and what was used before template literals was introduced. What were the problems with the earl00
AKAyush Kumarinblog.ayushcode.me·Jun 6 · 4 min readTop JavaScript Array Methods Every Beginner Should KnowWhen I first started learning JavaScript, I felt array methods were quite confusing, as there were many of them. But after practicing with some examples, I realised that array methods makes the code v00
AKAyush Kumarinthedevlog.hashnode.dev·Jan 17 · 2 min readHow Git Operates: An In-Depth Look at the .git Folder and its RoleHow Git Works Internally Git works internally by storing your project as a collection of snapshots rather than tracking file differences. Every time you make a commit, Git takes a picture of the current state of all files and saves it inside the hidd...00
AKAyush Kumarinthedevlog.hashnode.dev·Jan 17 · 2 min readUnderstanding Version Control: Solving the Pendrive Problem1] First let’s analyse traditional methods of collaboration. Imagine you are doing a project with your classmates, in that case you might have divided the work in smaller modules and started preparing a single module to integrate it in future. Let’s ...00
AKAyush Kumarinthedevlog.hashnode.dev·Jan 6 · 3 min readGit for Beginners: Basics and Essential CommandsWhat is Git? Git is a distributed version control system that enables organized code management and collaboration by tracking changes to the source code. Before moving ahead, let's see what a version control system is. Version Control System A versio...00