JavaScript : Let, Var, ConstWe will learning everything about let, var, and const. "let", "var", and "const" are keywords in JavaScript used for variable declaration.Feb 6, 2023·4 min read
JavaScript - ObjectWhat 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 property's value can be a function, in which case the property is known as a method. const person = { n...Jan 4, 2023·3 min read
JavaScript : Variables.Variables are used to store values in JavaScript. They can be created using the var, let, or const keywords. let, const and var The var keyword is used to declare a variable that is scoped to the nearest function or block. The let keyword is similar ...Jan 3, 2023·1 min read
JavaScript Array Methods Explained with ExamplesIn programming, an array is a collection of elements or items. Arrays store data as elements and retrieve them back when you need them.Dec 22, 2022·4 min read
CSS Box ModelThe 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 actual content Content Whatever we write it's called content. <h1>Content</h1> Border border is just abo...Nov 28, 2022·1 min read
CSS Media QueriesWhat 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 different. Using media queries, we can solve these issues and make the web responsive. @media scree...Nov 25, 2022·1 min read