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
๐Ÿ”ฅ ๐Ÿค– AI / DATA SCIENCE MASTER COURSE LIST (2026) ๐Ÿค–๐Ÿ”ฅ
๐Ÿš€ APPLIED AI FULL COURSE โ€“ AI Industry Experts | Professional AI Program
๐Ÿง  AI MASTERY COURSE โ€“ Dhruv Rathee | Independent Educator
๐Ÿ˜Rohit Negi DSA & Generative Ai Course
๐Ÿ“Š DATA SCIENCE MASTER 2.0 โ€“ PW Skills | PhysicsWallah
๐Ÿ“ˆ COMPLETE DATA SCIENCE โ€“ iNeuron | iNeuron Learning
๐ŸŽ“ DATA SCIENCE PROGRAM โ€“ IIT Madras | IIT Madras Online
๐Ÿ“‰ DATA SCIENCE COURSE โ€“ Code With Harry | YouTube / CWH
๐Ÿ–ฅ๏ธ DATA SCIENCE & ANALYTICS โ€“ Naresh IT Faculty | Naresh IT
๐Ÿ“Š DATA ANALYTICS COURSE โ€“ PW Skills | PhysicsWallah
๐Ÿค– MLOPS ENGINEERING COURSE โ€“ Naresh IT Experts | Naresh IT
๐Ÿ PYTHON FOR AI & ML โ€“ Krish Naik | YouTube / Corporate Trainer
๐Ÿ PYTHON PROGRAMMING โ€“ Abdul Bari | Udemy / YouTube
โš™๏ธ PYTHON + DSA FOR AI โ€“ DurgaSoft Faculty | DurgaSoft
๐Ÿ’ป PYTHON FULL STACK (AI BASE) โ€“ KV Rao | Naresh IT
โ˜๏ธ AZURE DATA ENGINEERING โ€“ Gareth | Naresh IT
๐ŸŒฉ๏ธ GOOGLE CLOUD PLATFORM (AI READY) โ€“ Mr. Saidul | GCP
Start your career in 2026 with Ai & Data science MSG for more info @Myhurthearts
CHALLENGE

const original = { a: 1, b: { c: 2 } };
const shallow = { ...original };
const deep = JSON.parse(JSON.stringify(original));

shallow.a = 10;
shallow.b.c = 20;

deep.a = 100;
deep.b.c = 200;

const frozen = Object.freeze({ x: 1, y: { z: 2 } });
frozen.x = 99;
frozen.y.z = 99;

console.log(original.a, original.b.c, frozen.x, frozen.y.z);
โค1
The best way to learn JavaScript is by practicing examples. In this post, I have posted some basic programs for internships purpose and pratice.
Namaste Dev Course Alert ๐Ÿงจ

Mern Stack Bundle
Frontend Master Bundle
Advance Full stack Bundle
Namaste Nodejs
Namaste React
Namaste SQL Hin/Eng
Namaste DSA
Namaste Frontend Design
Namaste Javascript
Everything Available DM @Myhurthearts
โŒจ๏ธ Advanced JS Cheat sheet
This media is not supported in your browser
VIEW IN TELEGRAM
CHALLENGE

async function fetchData() {
console.log('1');
return Promise.resolve('data');
}

async function processData() {
console.log('2');
const result = await fetchData();
console.log('3');
return result;
}

console.log('4');
processData().then(() => console.log('5'));
console.log('6');
โค3