AGAshu Gautaminashugautam.hashnode.dev·Feb 9, 2023 · 2 min readJavascript Objects-01In this topic, we are going to study Objects in depth Object stores the value in key and its value format. Syntax: - const obj={ name:'rahul', roll_no:298220, college:'abc college' } Here obj is object_name you can change it as you want name:'rahul...00
AGAshu Gautaminashugautam.hashnode.dev·Feb 1, 2023 · 2 min readCSS->Part 02->Selector & PositionIn this lecture, we are going to study the following topics Selector Choose nth-child select the first child select the last child Position Fixed Static Relative Absolute Selector--->Choose nth-child, first child and last child: - We choos...00
AGAshu Gautaminashugautam.hashnode.dev·Jan 29, 2023 · 1 min readCSS-->Part 01-->SelectorIn this class, we are going to study selector Why do we use Selector? Selector is used to selecting the element we want to style from HTML. 6 types of selectors are used Universal Individual Class and ID And Combined Direct child Universal Se...00
AGAshu Gautaminashugautam.hashnode.dev·Jan 25, 2023 · 4 min readJavaScript Array part 01In this Lecture, we going to study the JavaScript Array we going to cover the following topics in this lecture: - what is array push pop shift unshift slice splice concertation fill include index of isArray join lastIndexOf map revers...00
AGAshu Gautaminashugautam.hashnode.dev·Jan 20, 2023 · 3 min readIntroduction to web in HTML -03This is 3rd part and in this one, I cover some more topics like How to make a table How to make a form Audio Tag Video Tag Table: - <table> </table> There are mainly 5 things <tr>: - To create a new Row we use <tr> tag and close should be must...00