PDPooja Dafinmedium.dev·Dec 19, 2022 · 4 min readArray Method In JavaScriptArrays are generally described as "list-like objects" they are single objects that contain multiple values stored in a list. the array consists of square brackets and items that are separated by commas. const shopping = ['bread', 'milk',..]; //or l...00
PDPooja Dafinmedium.dev·Dec 11, 2022 · 1 min readwhat is Git?Git is a version control system used for tracking changes in our computer files. it is generally used for source code management in software development. it is free and open-source version control system used to handle small to very large projects ef...00
PDPooja Dafinmedium.dev·Dec 3, 2022 · 2 min readCSS Box Model (Padding, Margin, Border)The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the actual content. In CSS Box Model, every HTML element is considered as a rectangular box. That box can have content ( width...00
PDPooja Dafinmedium.dev·Dec 3, 2022 · 2 min readAudio and Video tags in htmlThe audio tag is used to embed sound content in a document, such as music. the audio tag contains one or more tags with different audio sources. In the audio tag, there are some attributes namely: 1. autoplay:- specifies that the audio will start pla...00
PDPooja Dafinmedium.dev·Dec 2, 2022 · 2 min readInput elements in htmlThe input type elements specify an input field where you can enter the data. the input element is the most important form element. This input element can be displayed in many ways, depending on the type attribute. The different input types are as fol...00