Back

Shubham

Fearlessย โ€ขย 3m

๐Ÿ™ Sorry for the gap in my 21-day JavaScript learning journey! I was on a short trip โ€“ had the blessed opportunity to visit: Ujjain (Mahakal Darshan) Indore Khatu Shyam Ji (Rajasthan) and explored Mandafiya (Rajasthan) โœจ Now Iโ€™m back, refreshed and ready to continue the Day 11/21 JavaScript journey ๐Ÿš€ Thank you for staying connected ๐Ÿ™Œ Learning never stops โ€“ just sometimes takes a small pause โค๏ธ #21DayJavaScript #LearnInPublic #CodingJourney #WebDevelopment

3 Replies
12
Replies (3)

More like this

Recommendations from Medial

Shubham

Fearlessย โ€ขย 3m

Day 11/21 โ€“ JavaScript API Calls ๐ŸŒ Today I explored how to fetch data from APIs in JavaScript using async/await. Copy code Javascript async function getUsers() { try { let response = await fetch("https://jsonplaceholder.typicode.com/users");

See More
Reply
3
Image Description
Image Description

Inayat Hasan

Software engineerย โ€ขย 1y

[This post has been deleted by the creator]

4 Replies
5

Shubham

Fearlessย โ€ขย 3m

Day 09/21 โ€“ JavaScript Classes & Objects Today I explored Classes & Objects in JavaScript โ€“ the building blocks of Object-Oriented Programming (OOP). ๐Ÿš€ ๐Ÿ”น Objects = collections of data & methods ๐Ÿ”น Classes = blueprints to create objects Example:

See More
Reply
8

Shubham

Fearlessย โ€ขย 3m

๐Ÿš€ Day 08/21 โ€“ JavaScript Events Sorry for the 1-day gap ๐Ÿ™, but back on track with my 21-day JavaScript learning journey Today I learned about Events โ€“ actions that happen in the browser (clicks, key presses, scrolls, etc.), which we can capture a

See More
Reply
1
10

Shubham

Fearlessย โ€ขย 3m

Day 10/21 โ€“ JavaScript: Callback, Promise & Async/Await Today I learned how JavaScript handles asynchronous tasks like API calls, file loading, or timers. โšก ๐Ÿ”น Callback โ€“ a function passed into another function function fetchData(cb) { setTimeou

See More
Reply
1

Shubham

Fearlessย โ€ขย 4m

๐Ÿš€ Day 1/21 โ€“ My JavaScript Learning Journey Iโ€™ve started my 21-day challenge to learn and share JavaScript daily. ๐Ÿ”น Todayโ€™s focus: Basics, Variables, and Data Types Variables: var, let, const (different scopes & usage). Data Types: 7 primitive

See More
Reply
2

Shubham

Fearlessย โ€ขย 3m

๐Ÿš€Day 06/21 โ€“ JavaScript DOM (Document Object Model) Todayโ€™s focus was on DOM โ€“ the way JavaScript interacts with web pages. ๐ŸŒ ๐Ÿ‘‰ DOM represents HTML as a tree structure. ๐Ÿ‘‰ With JS, we can select, modify, and create elements dynamically. Example

See More
Reply
9

Shubham

Fearlessย โ€ขย 4m

๐Ÿš€ Day 2 of 21 โ€“ JavaScript Learning Journey Topic: Operations & Conditional Statements ๐Ÿ”น Operations in JavaScript Arithmetic: + - * / % Assignment: = += -= Comparison: == === != > < >= <= Logical: && || ! ๐Ÿ”น Conditional Statements // if sta

See More
1 Reply
1
16

Shubham

Fearlessย โ€ขย 4m

๐Ÿš€ Day 3/21 โ€“ My JavaScript Learning Journey Today I explored two core concepts: Loops & Strings. ๐Ÿ”น Loops in JavaScript for โ†’ classic loop with index. while โ†’ runs until a condition is true. do...while โ†’ executes at least once. for...of โ†’ best

See More
Reply
2

Shubham

Fearlessย โ€ขย 3m

๐Ÿš€ Day 4/21 โ€“ My JavaScript Learning Journey Todayโ€™s focus: Arrays in JavaScript ๐Ÿ“ฆ An Array is a special object in JS used to store multiple values in a single variable. ๐Ÿ”น Creating Arrays let fruits = ["Apple", "Banana", "Mango"]; ๐Ÿ”น Common Me

See More
Reply
5

Download the medial app to read full posts, comements and news.