KCKaran Chauhaninkaranchauhan.hashnode.dev·Dec 15, 2022 · 2 min readMy HTML & CSS journey with Hitesh SirOverview of the course I have been following Hitesh Sir since my 1st year of BCA but only on youtube, I haven’t purchased any of his courses till my final year. In the 5th semester, I purchased his Pro Backend course. I fell in love with his teaching...00
KCKaran Chauhaninkaranchauhan.hashnode.dev·Sep 16, 2022 · 5 min readJavaScript Interview Preparation CheatsheetWhat is Scope ? The scope is the current context of execution in which values and expressions are accessible or can be referenced. In JavaScript, the following scopes are available: 1. Global Scope - the outermost scope in a javascript file. The vari...00
KCKaran Chauhaninkaranchauhan.hashnode.dev·Jul 25, 2022 · 1 min readA cheat sheet for a must know Git CommandsWhat is git? Git is a open source distributed version control system. It is locally install on a system and keep track on the changes made in the repository it is initialized. Basic git commands git config --global user.name <your name> git config -...00
KCKaran Chauhaninkaranchauhan.hashnode.dev·Jul 24, 2022 · 3 min readMarkdown Cheat Sheet for every DeveloperWhat is Markdown? Markdown is a light-weight markup language used for formatting text. In this cheat sheet I have described all the necessary syntax required to write beautiful text. The extension of markdown file is md. The name is user-defined, but...00
KCKaran Chauhaninkaranchauhan.hashnode.dev·Jul 23, 2022 · 3 min readCSS Selector - Learn in the simplest wayWhat is CSS selector? CSS Selector is used to select any HTML element(s) such that you can style it. The syntax of CSS is selector {property:value}. To start with the CSS, it's necessary to select the correct element, to put styling on. In this blog...00