Web Developer👩🏻💻 | Technical Writer |
JavaScript | React | Figma |
DMs open
Aug 28, 2023 • 13 tweets • 3 min read
Objects in JavaScript 🚀
A Thread ↓
Objects are collections of `key: value` pairs. These `key: value` pairs are also called properties.
JavaScript objects enable you to store, manipulate, and send data across a network.
In objects, you can store in-depth, composite/complex data.
Aug 23, 2023 • 14 tweets • 3 min read
Functions in JavaScript 🚀
A Thread ↓
A `function` is a block of code you can use to create reusable code. Functions are referred to as first-class data types in JavaScript. This implies that anything you could do with variables and objects, you could also accomplish with functions.
Aug 15, 2023 • 11 tweets • 3 min read
Arrays in JavaScript 🚀
A Thread ↓
⚡ Array
In JavaScript, arrays are ordered lists. A single variable called an array is used to hold various elements. It is frequently used if we need to store a list of elements and access them using a single variable.
Create an Array:
let arr = [10, 20, 30] ;
Aug 9, 2023 • 11 tweets • 3 min read
JavaScript Conditional Statements 🚀
A Thread ↓
⚡ Conditional Statements
Sometimes, depending on the condition, you might want to perform different actions. To do this, you can use conditional statements in JavaScript.
The following are different types of CS:
✧ if
✧ else
✧ else-if
✧ switch
✧ ternary operator
Jul 10, 2023 • 15 tweets • 4 min read
JavaScript basics for absolute beginners✨
A Thread ↓
JavaScript is a robust programming language that is commonly used for web development. It helps you create dynamic and interactive web pages.
The foundations of JavaScript are as follows:
Jun 19, 2023 • 12 tweets • 4 min read
Learn the basics of CSS Grid🎯
A Thread ↓
What is Grid ?
It is a two-dimensional grid-based layout system.
Designing web pages has become easy with grids. It can have items placed on it vertically, horizontally, or both at once. You can arrange items however you want, even stacked.
Jun 7, 2023 • 17 tweets • 5 min read
15 Front-End Development Tools/Resources 🎯
A Thread ↓
1) Visual Studio Code
Visual Studio Code is an open-source IDE. It's a simple code editor for cross-platform development and web/cloud applications.
A thread ↓
✧ A valid HTML form ensures that the user's input meets the required criteria and is correct.
✧ Using HTML attributes for form validation or JavaScript for more complex logic will let you implement more sophisticated validation logic.
May 7, 2023 • 13 tweets • 4 min read
HTML best practices for improving your web development🎯🚀
A thread ↓
Since there are so many, it would be impossible to discuss them all in one thread. Here you will learn about those that are most common.
In case you want to learn more, you can check out the links below.
Apr 28, 2023 • 11 tweets • 2 min read
Promises in JavaScript 🚀
A Thread ↓
Promises in JavaScript are used to manage asynchronous operations.
Promises are often used for tasks that take a while to finish. For example, fetching data from an API, reading a file from the server, or performing a time-consuming operation.
Apr 6, 2023 • 11 tweets • 3 min read
async and await in JavaScript🚀
A Thread ⬇
async / await
First of all, what are the async/await keywords and why do we need to use them?
Apr 5, 2023 • 7 tweets • 2 min read
Check out the amazing features of Canva you might be missing 👀
🧵👇
Text to Image
Now you can transform your ideas into stunning visuals with Canva's new 'Text to Image' AI tool. If you give it a prompt, it will transform it into beautiful images.
Mar 24, 2023 • 9 tweets • 4 min read
Top 5 React Component Libraries🎯
A thread↓
What are React Component Libraries?
A React component library or React UI library is a set of software tools or resources that includes a pre-built collection of design elements or components, that can be readily utilized in React applications.
Mar 12, 2023 • 13 tweets • 3 min read
JavaScript .map() Method🚀
A Thread ↓
✧ .map() array method
→ There are several ways to iterate through datasets in JavaScript, including for loop and forEach() methods.
→ The .map() method is one of the most popular methods.
Feb 26, 2023 • 9 tweets • 3 min read
7 amazing shape generators for your next project 🚀
Whether to use `:is()` pseudo-class or `:where()` pseudo-class in CSS 🤔
A Thread ↓
:is( )
It is useful when you want to simplify complex selectors that share the same declarations.
For example, instead of writing separate selectors for h1, h2, and h3 elements that all have the same color property, you can use `:is( )` to group them together:
Feb 9, 2023 • 14 tweets • 4 min read
CSS Tips to Improve Your Web Design and Development💡🚀
A thread🧵↓
⚡ Make scrolling on a page smooth.
Feb 7, 2023 • 12 tweets • 4 min read
10 JavaScript best practices you should know🚀
A Thread 🧵↓
1. Use `let` and 'const' to declare variables instead of the outdated `var` to prevent variable hoisting and improve code clarity.
Feb 4, 2023 • 15 tweets • 4 min read
Master Flexbox: A Comprehensive Guide🚀
A Thread ↓
To fully understand Flexbox, make sure to read Part 1 if you haven't already.