Shreya Trivedi Profile picture
Frontend Developer 🌐 || Creating Technical content ✍️ || Sharing resources & cheat sheets ✨
May 4 β€’ 5 tweets β€’ 2 min read
Understand CSS "fr" (fractional) Unit & why you should know about it

Open this thread to learn more πŸ‘‡πŸ§΅ Understanding fr unit:

➑️ fr stands for "fractional unit" and it's a flexible way to distribute space within a container

➑️ It is a way to allocate space based on fractions of the available space.
May 3 β€’ 6 tweets β€’ 2 min read
Day 12 of #20DaysOfJavascript πŸ”₯

Today let's understand "JavaScript Closure"

Learning closures in JavaScript is important because they allow functions to remember and access their lexical scope even after they have been executed

Open the thread to learn more πŸ‘‡πŸ§΅Image What are Closures?

➑️Closures is a concept in JavaScript that allow functions to remember and access their lexical scope, even after they have finished executing

➑️This means that functions can retain access to variables and parameters from their outer scope, even if those variables are no longer in scopeImage
May 24, 2023 β€’ 8 tweets β€’ 3 min read
Let's explore how CSS enables responsiveness and enhances the usability of websites πŸ”₯

πŸ‘‡ Image ⚑️CSS plays a vital role in responsive web design by
allowing websites to provide optimal user
experiences across devices, ensuring usability
and enhancing the visual appeal of web pages

⚑️Let's have a look on how CSS helps us to achieve
it
Mar 23, 2023 β€’ 8 tweets β€’ 3 min read
Open this thread to understand JAVASCRIPT DEBUGGING πŸ‘‡ What in general is debugging ??

Developers occasionally make mistakes while writing code. A bug is a mistake that occurs in a script or software.

Testing, identifying, and minimizing errors in computer programmes is the process of debugging
Mar 22, 2023 β€’ 7 tweets β€’ 2 min read
In javascript, inheritance is used to inherit a class's characteristics and methods.

It is one of most important pillar of object oriented programming

This thread will help you to understand the basics of inheritance πŸ‘‡ Image Defining inheritance πŸ‘‡ Image
Mar 17, 2023 β€’ 7 tweets β€’ 2 min read
Understand Asynchronous Javascript πŸ‘‡ What is exactly asynchronous javascript ? πŸ‘‡
Dec 17, 2022 β€’ 10 tweets β€’ 3 min read
Thread to understand "LOOPS IN JAVSCRIPT " in
detail πŸ‘‡ Image loops introduction -

πŸ‘‡ Image
Dec 15, 2022 β€’ 8 tweets β€’ 2 min read
OBJECTS IN JAVASCRIPT -

This thread will help you to understand everything about javascript objects πŸ‘‡ Introduction of Objects πŸ‘‡
Dec 14, 2022 β€’ 10 tweets β€’ 3 min read
⚑ARRAYS IN JAVASCRIPT ⚑

This thread contains all the basics you need to know about arrays in javascript πŸ‘‡ ⚑ Introduction to arrays ⚑

⚑ Creating arrays in javascript ⚑

πŸ‘‡
Jun 20, 2022 β€’ 7 tweets β€’ 2 min read
⚑ The basics of debugging ⚑

πŸ‘‡ ⚑ Understanding bug and debugging ⚑

πŸ‘‡
Apr 6, 2022 β€’ 9 tweets β€’ 3 min read
BASICS OF JAVASCRIPT OBJECTS

-- Objects are something that have got some behavior and
properties. Everything in javascript is object . Image How to create objects in javascript ??

- We have 3 ways to create objects

1 - We can use the object literal .
2- Create the instance of class directly (use new keyword).
3- We can use the object constructor. Image