Back

Shubham

Fearlessย โ€ขย 22d

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: // Class class Car { constructor(brand, year) { this.brand = brand; this.year = year; } details() { return `${this.brand} was made in ${this.year}`; } } // Object let myCar = new Car("Tesla", 2023); console.log(myCar.details()); // Output: Tesla was made in 2023 ๐Ÿ‘‰ Objects store real-world entities ๐Ÿ‘‰ Classes make object creation clean & reusable This concept helps build structured & scalable apps โœจ #21DayJavaScript #JavaScript #WebDevelopment #LearnInPublic #CodingJourney

Reply
8

More like this

Recommendations from Medial

Shubham

Fearlessย โ€ขย 27d

Day 05/21 โ€“ JavaScript Functions & Methods Today I explored one of the most powerful concepts in JavaScript: Functions & Methods. ๐Ÿš€ ๐Ÿ”น Functions are blocks of code designed to perform a specific task. They help in reusability and make code cleaner

See More
Reply
1

Shubham

Fearlessย โ€ขย 1m

๐Ÿš€ 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ย โ€ขย 28d

๐Ÿš€ 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
3

Shubham

Fearlessย โ€ขย 29d

๐Ÿš€ 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

Aryan Nagori

ย โ€ขย 

Siddhrans Technologiesย โ€ขย 2m

๐Ÿš€ Advanced Java Course Progress: Week 2 Completed! Thrilled to share my progress on GeeksforGeeks - Advanced Java course! Week 2 was all about bringing OOP concepts to life: ๐Ÿ”น Classes & Objects โ†’ Building blocks of my code ๐Ÿ”น Encapsulation โ†’ Kee

See More
Reply
1
Image Description

Lone Wolf

Founderย โ€ขย 7m

Indiaโ€™s EV market is booming, but itโ€™s still a long road ahead: ๐Ÿ“Œ 1.5M+ EVs sold in 2023, but only ~6% of them were passenger cars. ๐Ÿ“Œ Tata Motors dominates with 80%+ market share, while MG, Mahindra & BYD are scaling fast. ๐Ÿ“Œ Charging infra? Still

See More
1 Reply
1
9
Image Description
Image Description

Havish Gupta

Figuring Outย โ€ขย 1y

In 2022, Tesla's alone market cap was more than the next ten car companies combined, while Tesla sold only ~1% of the total cars in the world. So, how did Tesla become so valuable? Firstly because of the hype and it's future plans and secondly due

See More
8 Replies
1
21
Image Description
Image Description

Vishu Bheda

ย โ€ขย 

Medialย โ€ขย 8m

Elon Musk exposed the biggest lie in marketing: โ€œYou need ads to scale.โ€ Tesla has sold millions of cars without spending a penny on โ€œadsโ€. Hereโ€™s how Musk made Tesla a $800B brand without buying a single ad: Tesla doesnโ€™t spend on traditional ad

See More
8 Replies
5
19
Image Description
Image Description

Thakur Ambuj Singh

Entrepreneur & Creat...ย โ€ขย 11m

๐ŸŒ Electric Car Sales Surge Worldwide! โšก๐Ÿš— The transition to electric vehicles (EVs) is accelerating across the globe, and these numbers show some impressive growth projections: ๐Ÿ”น India: Leading the charge with a projected 39% growth EV sales are

See More
12 Replies
5
19
Image Description
Image Description

Vishu Bheda

ย โ€ขย 

Medialย โ€ขย 10m

In 2015, Apple set out to revolutionize the automobile industry. $10 billion spent. A self-driving future promised. Planned to beat Tesla. But instead of changing the world, they crashed. Hereโ€™s the wild story of how Appleโ€™s boldest gamble became

See More
17 Replies
3
24

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