Fearlessย โขย 6m
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. function greet(name) { return `Hello, ${name}!`; } console.log(greet("Shubham")); // Output: Hello, Shubham! ๐น Methods are functions inside objects, tied to data. Example: let user = { name: "Shubham", greet() { return `Hello, ${this.name}!`; } }; console.log(user.greet()); // Output: Hello, Shubham! ๐ Functions = Independent tasks ๐ Methods = Tasks attached to objects Mastering them is essential for writing scalable JavaScript code! ๐ก #21JavaScript #JavaScript #CodingJourney #LearnInPublic #CodeNewbie #WebDevelopment
Front-end Developerย โขย 1y
#Array in #javascript: Array in Javascript enables storing a collection of multiple items under a single variable name, and has members for performing common array operations. Arrays aren't primitives but are instead Array #objects with the followin
See More



๐ฅ-๐ต-๐-โฝ "You'll N...ย โขย 1y
1. Python: - History: Python was created by Guido van Rossum and was first released in 1991. Its design philosophy emphasizes code readability and its syntax allows programmers to express concepts in fewer lines of code. - Unique Fact: The name
See MorePython-Driven Develo...ย โขย 8m
๐ Hello World! Iโm Yash Deshmukh โ Python Developer | ML Enthusiast | Backend & Frontend Builder Iโm excited to officially introduce myself to this incredible tech community! With a strong grip on Python, I specialize in: ๐น Automation โ simplify
See Moreย โขย
Siddhrans Technologiesย โขย 8m
๐ 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
Download the medial app to read full posts, comements and news.