clevercoderjoy.hashnode.devVariable Declarations JavaScript EditionWhat are variables? Variables are just the names of memory locations with some values stored in them. Why do we need them? Imagine a scenario where you are asked to bring some water to drink. You bring water but that water is stored in some contai...Feb 16, 2023·6 min read
clevercoderjoy.hashnode.devValue Comparison Operators JavaScript EditionIn JavaScript, we have three different value-comparison operators: "=" "==" "===" What is ( = ) in programming languages? A single equals symbol (=) is also called an assignment operator. In simple terms, when I say " a = 5 ", this means that ...Feb 14, 2023·3 min read
clevercoderjoy.hashnode.devELI5 - Git: The Version Control System(VCS)What is git? Git is an open-source version control system. Now, you might be thinking what the heck this means... but don't worry, I will explain to you every single word that I have written like I am explaining to a 5-year-old.- Git is just a name t...Jan 28, 2023·5 min read
clevercoderjoy.hashnode.devConditionals & LoopsIn the previous blog, I covered type conversion and type casting in a JAVA program. If you have not read my previous blog yet then click here to give it a read and then proceed further from here. If you want to get started with JAVA for the first tim...May 1, 2022·6 min read
clevercoderjoy.hashnode.devType ConversionIn the previous blog, I covered the data types and some other important concepts in a JAVA program. If you have not read my previous blog yet then click here to give it a read and then proceed further from here. If you want to get started with JAVA f...Apr 23, 2022·2 min read