#iwritecode
Read more stories on Hashnode
Articles with this tag
What is Destructuring? In JavaScript, destructuring is a way to extract values from arrays or objects into distinct variables. It is a convenient way...
What is Hoisting? In JavaScript, hoisting is the behavior of moving declarations to the top of a script or a function. This means that you can use...
What is Object ? In JavaScript, an object is a collection of properties, and a property is an association between a name (or key) and a value. A...
In programming, an array is a collection of elements or items. Arrays store data as elements and retrieve them back when you need them. ยท Array an array...
The CSS Box Model The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the...
What is a Media Query? Using CSS media queries, we can make our web more responsive. When we open a website on different devices, the layout should be...