➡️htmlcheatsheet .com
Online interactive Cheat Sheet contains useful code examples, web developer tools, markup generators, and more.
➡️cssreference .io
cssreference is a free visual guide to CSS. It features the most popular properties, and explains them with illustrated and animated examples.
➡️hackerthemes .com/bootstrap-cheatsheet/
Quickly find your Bootstrap classes on this interactive Bootstrap cheat sheet. It includes code samples and live preview of elements.
➡️websitesetup.org/javascript-che…
A JavaScript cheat sheet with the most important concepts, functions, methods, and more. A complete quick reference for beginners.
➡️grid.malven .co
Learn all about the properties available in CSS Grid Layout through simple visual examples.
That's all for the thread.
If you find it useful retweet the first one.
- follow @codewithhajra
Happy Learning.🌸💙
• • •
Missing some Tweet in this thread? You can try to
force a refresh
What is function and why do we use it?
- Local and Global variables in JavaScript.
A small thread🧵👇
- A JavaScript function is a block of code designed to perform a particular task. It allows us to write more maintainable code. Define the code once, and use it many times. You don’t need to write the same code over and over again.
- It is defined with the function keyword, followed by a name and parentheses (). The code to be executed by the function is placed inside curly brackets: {}
- A JavaScript function is executed when "something" invokes it (calls it).
1- Figure: The <figure> tag specifies self-contained content, like illustrations, diagrams, photos, etc.
- The <figcaption> element is used to add a caption for the <figure> element.
2- Details: The <details> tag is often used to create an interactive widget that the user can open and close. By default, the widget is closed. When open, it expands and displays the content within.
- The <summary> tag defines a visible heading for the <details> element.