ANAmar Naruteinstarver.hashnode.dev·May 13, 2022 · 5 min readWhat is event bubbling & capturing?Did you ever click on some element and some other event got fired? And you did not know why is it happening so? It's most probably got to do with event bubbling and capturing, let us understand what are these concepts and how can they be used for ou...00
ANAmar Naruteinstarver.hashnode.dev·Aug 20, 2021 · 3 min readPrimitive vs ReferenceIn javascript there are two types of data types reference and primitive types. Primitive As the name suggests these types are of a very basic kind. It includes the following types String Number Boolean Undefined Null let name = 'Amar' let age = 22...00
ANAmar Naruteinstarver.hashnode.dev·Aug 20, 2021 · 8 min readFlexible boxFlexible box or commonly known as flexbox is a popular CSS property used to align and layout elements on the screen easily and with more control. Flexbox mainly consists of two parts, the container and the items inside it. Both the container and the ...00