Flow of code execution in JavaScriptJavaScript is a single-threaded 'interpreted' language, where only one command executes at a time. It has a Synchronous model of execution, where each line is executed line by line, top to bottom. As soon as you start executing your code, there are t...Mar 30, 2023·1 min read
CSS GridThe CSS Grid Layout Module offers a two-dimensional grid-based layout system, making it easier to design web pages without having to use tables, floats and positioning (Flexbox is also a very great layout tool, but its one-directional flow has differ...Mar 24, 2023·2 min read
HTML <input> elementsThe <input> element is used to create interactive controls for web-based forms to accept data from the user; a wide variety of input data and control widgets are available. It is one of the most powerful and complex elements in all of HTML due to the...Mar 23, 2023·2 min read
HTML ElementsAn HTML element is everything from the start tag to the end tag as well as the content inside. <tagname>Content goes here...</tagname> HTML elements can be nested (this means that elements can contain other elements). HTML elements with no content ar...Mar 22, 2023·1 min read
Arrays in JavaScriptArrays are a way to store a list of data items under a single variable name, where each value inside the list can be accessed individually. Syntax to create an array: const array_name = [item1, item2, ...]; or const array_name = new Array(item1, item...Nov 4, 2022·1 min read