Search Results

Blog Archive

`dialog`: Element in HTML

In the realm of web development, HTML 5 introduced various new elements making web designing more interactive and user-friendly. Once such element is <dialog>. The...
Continue reading

ReactJS: Hand Written Notes

Credits: https://www.linkedin.com/posts/atechajay_handwritten-reactjs-notes-activity-7008818278110257152-w4Sq?utm_source=li_share&utm_content=feedcontent&utm_medium=g_dt_web&utm_campaign=copy
Continue reading

Class based components in reactJS

PDF: https://github.com/academind/react-complete-guide-code/blob/13-class-based-cmp/slides/slides.pdf What and why Class-based components in React are ES6 classes that extend the component class from React library. They offer more features than...
Continue reading

Closures

Function with there lexical scope form a bundle that’s called lexical scope. In JavaScript, a closure is a function that reference variable from its outer...
Continue reading