JMJay Maldeinjaymalde.hashnode.dev·Jun 18, 2023 · 4 min readJavascript ArraysWhat are Arrays in Javascript? A javascript Array is a single variable which is used to store elements of different data types. Arrays start with index 0. Different ways to Declare Arrays 1st Way // Initializing while declaring let numberList = [1,2,...00
JMJay Maldeinjaymalde.hashnode.dev·Jun 15, 2023 · 2 min readCSS Media QueriesWhat are Media Queries? Media queries very important for creating Responsive Web Pages.By using media queries we can customize the behaviour (presentation) of DOM elements on the screen for particular devices or screen sizes without changing the actu...00
JMJay Maldeinjaymalde.hashnode.dev·Jun 5, 2023 · 4 min readCSS GridWhat is CSS Grid? CSS Grid is a layout system similar to flexbox which allows us to create two-dimensional layouts with rows and columns. CSS Grid can help us design web pages more easily and efficiently, without having to rely on floats, positioning...00
JMJay Maldeinjaymalde.hashnode.dev·Jun 3, 2023 · 2 min readCreate & Write on Readme.md ( Markdown ) fileWhat is a Markdown File ? Markdown is a lightweight markup language created by John Gruber in 2004. It is the world's most popular markup language. Where is it Markdown used and where is it supported? Github, Bitbucket readme files & forums use mark...00
JMJay Maldeinjaymalde.hashnode.dev·Jun 2, 2023 · 3 min readCSS FlexboxWhat is CSS Flexbox? CSS Flexbox is a collection of multiple CSS layout properties which makes it easier to design flexible & responsive pages. Different Flexbox properties for parent elements display This property is used to arrange the items in an ...00