JAVASCRIPT PROGRAMMING
3.68K subscribers
494 photos
3 videos
48 files
102 links
Hello! I am @imabhi3030 and welcome to the Coding channel! Here we can learn all things related to coding and improve our skills. I am always present to help you. If you need any kind of assistance, just let me know! 😊
Download Telegram
πŸ”° JavaScript DOM Manipulation Methods
❀1
πŸ”° JavaScript Array Cheatsheet
πŸ” Data Science Enthusiast
Hey everyone! I'm diving deep into data science and would love to connect with fellow data lovers! Let’s explore the world of analytics together! πŸ“Š ~ @ImRCBianfan


πŸ”—
https://www.linkedin.com/in/ayush4628

✨ Creative Thinker
Hi there! I’m passionate about creativity and innovation in various fields. Let’s share ideas and inspire each other! 🎨 ~ @Myhurthearts


πŸ”—
https://www.linkedin.com/in/Myhurthearts

Let’s follow each other on LinkedIn and grow πŸš€
❀2
CHALLENGE

const user = {
name: 'Sarah',
age: 25,
getName() { return this.name; },
getAge: () => this.age
};

const methods = {
regular: user.getName,
arrow: user.getAge
};

console.log(methods.regular());
console.log(methods.arrow());
console.log(user.getName());
console.log(user.getAge());