© 2023 Hashnode
#hiteshchoudharylco
Media Queries in CSS: Media Queries are used to make the websites responsive. The media query is used to hide/show an element when printing web pages. Media queries can modify the appearance (and e…
The Table of Contents: Box Model: Content Padding Border Margin Height and Width Box Sizing The Box Models in CSS Box Model: All HTML elements can be considered as boxes. In CSS, the term "b…
What is Linux? Linux is an open-source Operating system based on Unix. It was first developed by Linus Torvalds in 1991 and is now widely used in various computer systems, from desktop computers to se…
Converting Array values to String The JavaScript method toString() converts an array of values to Single String. const fruits = ["Banana", "Orange", "Apple", "Mango"]; console.log(fruits.toString()); …
Simply Array is to store multiple values in one variable. Syntax: const array_name = [item1, item2, ...]; ( Here we assign array literal to the variable array_name) Why Arrays? If we want to store 3 v…
Javascript came to the market in 1995 and at that time it was initially known as mocha, and in 1996 the name from mocha is changed to typescript and finally, in 2000 the name from typescript changed t…
Table of Contents The Position properties in CSS CSS Static Positioning CSS Relative Positioning CSS Fixed Positioning CSS Absolute Positioning CSS Sticky Positioning #The Position Property in…
What is Cloud Computing? Cloud computation is the On-demand delivery of IT resources like storage, database, application and other IT resources via the Internet with pay-as-you-go pricing. Cloud platf…
1)Flexbox:- it is a one-dimensional layout model for documents means when we call flexbox it will deal with only one dimension at a time either as a row or a column. it offers two powerful methods i.e…
The Box Model:- Everything in CSS has a box around it, and understanding these boxes is key to being able to create more complex layouts with CSS The CSS box model as a whole applies to block boxes an…