JAVASCRIPT_PROGRAMMING

@javascript_programmings


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! 😊

JAVASCRIPT_PROGRAMMING

20 Oct, 03:21


CHALLENGE ❓


const map = new Map();
const key1 = {};
const key2 = key1;

map.set(key1, "Value for key1");
map.set(key2, "Value for key2");

console.log(map.get({}));
console.log(map.get(key1));

JAVASCRIPT_PROGRAMMING

17 Oct, 08:49


function* gen() {
  yield *[1,1];
  yield 2;
  yield 3;
}

const generator = gen();

console.log(generator.next().value);
console.log(generator.next().value);

for (const value of generator) {
  console.log(value);
}

JAVASCRIPT_PROGRAMMING

16 Oct, 17:48


#meme

JAVASCRIPT_PROGRAMMING

09 Oct, 05:13


Join Coder's our Chat folder πŸ“ here is everything you want share with friends 😁

If U want to be admin MSG @Myhurthearts

https://t.me/addlist/433LZdSKQSg3YWFl

JAVASCRIPT_PROGRAMMING

02 Oct, 12:08


Do you love Crypto currency, Scam alert, online earning, crypto listing and more in one channel πŸ˜€ join now πŸ‘‡

https://t.me/crypto_mlmcommunity

https://whatsapp.com/channel/0029VaByk4VF1YlQDxhpxo0W

For Google drive & mega links πŸ”—

https://t.me/use_fullinks

JAVASCRIPT_PROGRAMMING

17 Sep, 03:16


What will be alerted here?

JAVASCRIPT_PROGRAMMING

17 Sep, 03:16


Useful: if you work on a large JavaScript project, run

$> npx unimported

It scans your project and lists all unused NPM dependencies and unimported components, that are not used in your code. It helps to remove dead code from your codebase.

JAVASCRIPT_PROGRAMMING

17 Sep, 03:16


What is the result of execution of this try catch block?