NKNikhil Khetaninnikhilkhetan.hashnode.dev·Sep 11, 2022 · 5 min readCheat sheet on JavaScript interview questionsHi guys, toady in this article we are going to see some of the frequently asked questions in JavaScript. 1. Call Stack Call stack maintains the order of execution of execution context When you execute a script, the JavaScript engine creates a global...00
NKNikhil Khetaninnikhilkhetan.hashnode.dev·Aug 27, 2022 · 3 min readArray Methods In JavaScriptTypes of Array methods: 1. shift() This method removes the first element from an array let movies = ["ironman", "superman", "spiderman"]; movies.shift(); console.log(movies); output: [ 'superman', 'spiderman' ] ironman has been removed from the sta...01P
NKNikhil Khetaninnikhilkhetan.hashnode.dev·Jul 25, 2022 · 1 min readGetting started with GitSETUP Set a name that is identifiable for credit when review version history git config --global user.name “[firstnamelastname]” Set an email address that will be associated with each history marker git config --global user.email “[valid email]” ...00
NKNikhil Khetaninnikhilkhetan.hashnode.dev·Jul 23, 2022 · 2 min readMarkdown syntax cheat sheetMarkdown is a lightweight markup language for creating formatted text using a plain-text editor. Markdown is a way to style text on the web. It is mostly used in GitHub as readme.md file to explain our project. Markdown file has an extension of .md ...00
NKNikhil Khetaninnikhilkhetan.hashnode.dev·Jul 18, 2022 · 3 min readGuide To CSS SelectorBasic selectors 1. Universal Selector: The universal selector (*) selects all HTML elements on the page. Example- The CSS rule below will affect every HTML element on the page: /* asterisk symbol means apply to all */ *{ margin: 0; padding: ...00