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.
$> 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.
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
https://t.me/crypto_mlmcommunity
https://whatsapp.com/channel/0029VaByk4VF1YlQDxhpxo0W
For Google drive & mega links π
https://t.me/use_fullinks
π1
Forwarded from DEVELOPER CHEET SHEET (πα΄α΄
α΄Ι΄ πα΄ΚΙͺΙ΄α΄
α΄)
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
If U want to be admin MSG @Myhurthearts
https://t.me/addlist/433LZdSKQSg3YWFl
Telegram
C0DERS_Z0NE
πα΄α΄
α΄Ι΄ πα΄ΚΙͺΙ΄α΄
α΄ invites you to add the folder βC0DERS_Z0NEβ, which includes 45 chats.
Forwarded from πα΄α΄
α΄Ι΄ πα΄ΚΙͺΙ΄α΄
α΄
Admin vacancy in our channel & group π
π°Join & learn & earn π°
π https://t.me/addlist/e7aVgjvILjoyMzNl
π https://t.me/addlist/e7aVgjvILjoyMzNl
π°Join & learn & earn π°
π https://t.me/addlist/e7aVgjvILjoyMzNl
If you want to be admin in any channel then msg @Myhurthearts
We can share revenue with you in our monetize channel approx $ 0.05 daily depends on revenue π
Responsibility of admin
1 ) share channel based content,post, anything
2) Also you can promote your channel free
3) and more benifits you can get like premium course, promotion..
π https://t.me/addlist/e7aVgjvILjoyMzNl
Javascript is an _______ language?
Anonymous Quiz
61%
Object-Oriented
19%
Object-Based
15%
Procedural
5%
None of the above
Which of the following keywords is used to define a variable in Javascript?
Anonymous Quiz
28%
Var
19%
let
46%
Both Var and let
7%
None of these
Which type of inheritance is not allowed in Java
Anonymous Quiz
15%
Single Inheritance
30%
Multiple Inheritance
32%
Multilevel Inheritance
23%
Hierarchical Inheritance
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);
}Which features are characteristic of JavaScript?
A) Static Typing B) Asynchronous Programming with Promises C) Compilation to Native Code D) Explicit Memory Management
A) Static Typing B) Asynchronous Programming with Promises C) Compilation to Native Code D) Explicit Memory Management
Anonymous Quiz
39%
A and B
23%
C only
19%
B and D
19%
A and D
What will be the output of the following code snippet?
<script type="text/javascript" language="javascript"> var x=12; var y=8; var res=eval("x+y"); document.write(res); </script>
<script type="text/javascript" language="javascript"> var x=12; var y=8; var res=eval("x+y"); document.write(res); </script>
Anonymous Quiz
45%
20
37%
x+y
11%
128
8%
None of the above
π1
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));
π₯1