Web design & ๐Ÿ˜ƒ development
29.2K subscribers
499 photos
23 videos
67 files
762 links
Admin๐Ÿ‘ฎ @sreetamo @Tranjar

Get free resources for webdevelopment , html , CSS , JavaScript , reactjs , wordpress , Php , nodejs ...etc. Buy ads: https://telega.io/c/WebsiteDesignLearningGroup
๐Ÿ‘ฅGroup๐Ÿ‘ฅ @website_DesignLearning_Group
Download Telegram
JavaScript reduce(), some(), and every() method explained
๐Ÿ‘2๐Ÿ”ฅ1
What will be output?
๐Ÿ‘4๐Ÿ‘1
JavaScript fetch api
๐Ÿ”ฅ6โค1๐Ÿ‘1
JavaScript DOM Manipulation Cheatsheet
โค5๐Ÿ‘1
CHALLENGE

const obj1 = { a: 1, b: { c: 2 } };
const obj2 = { ...obj1 };

obj1.b.c = 3;

console.log(obj2.b.c);


๐Ÿ”ดWhat will be output??
๐Ÿ‘4โค1