ASAditya Sharmainadityasharma03.hashnode.dev·Aug 27, 2022 · 3 min readArrays in JavaScriptWhat is an array? We all know what is an array, it is a collection of similar data elements stored at contiguous memory locations. How to create an array in javascript? We can create an array using two ways: 1. By using an array literal: an array lit...00
ASAditya Sharmainadityasharma03.hashnode.dev·Aug 12, 2022 · 3 min readQuick intro to flexboxWhat is flexbox? Flexbox is a parent and child relationship. Flexbox layout is activated by declaring display: flex; or display: inline-flex; on an element which then becomes a flex container, arranging its children within the space provided and cont...00
ASAditya Sharmainadityasharma03.hashnode.dev·Jul 23, 2022 · 1 min readA cheat sheet on MarkdownWhat is a markdown ? Whenever you visit websites like Github you see there is a file with the extension .md and generally by the name readme.md. Have you ever wondered what is that .md file is? Well, that is a markdown file. Well, markdown is a ligh...00
ASAditya Sharmainadityasharma03.hashnode.dev·Jul 22, 2022 · 2 min readCSS PositionThe CSS position property is used to set positions of different elements of HTML. There are many positions which can be applied to elements to make it looks good to the viewers. By using position property you can place an element to top, bottom, left...00
ASAditya Sharmainadityasharma03.hashnode.dev·Jul 21, 2022 · 3 min readCSS SelectorsCSS selectors are used to select a particular HTML element or a group of elements, so that we can apply style on it. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-...00