To watch more videos on programming, Data Structures, Data Science, C++, Java, React, CSS, subscribe to our channel.
Stay tuned to Apni Coding YouTube channel for more! Happy Coding! || Happy Learning!


apni coding

Shadowing Alert!
let a = 10;
{
let a = 20;
console.log(a);
}

17 hours ago | [YT] | 1

apni coding

Const confusion
const x = 42;
x = 50;

1 day ago | [YT] | 0

apni coding

Let’s scope it!
{
let a = 5;
}
console.log(a);

2 days ago | [YT] | 1

apni coding

What’s the output?
function test() {
if (true) {
var x = 10;
}
console.log(x);
}
test();

3 days ago | [YT] | 2

apni coding

JavaScript Scope Fun! 🧠
What’s the scope of a var declared variable?
πŸƒβ€β™‚οΈ Comment your guess fast!

4 days ago | [YT] | 1

apni coding

πŸ’‘ Brain Teaser! πŸ€”
In Node.js, which of these is a built-in module?
🧠 Quick answer?

5 days ago | [YT] | 0

apni coding

πŸ’‘ Brain Teaser! πŸ€”
Which of these is used to pass data from parent to child in React?
🧠 Prove your skills!

6 days ago | [YT] | 0

apni coding

πŸ’‘ Brain Teaser! πŸ€”
Which of these correctly checks if a value is exactly equal in JavaScript?
🧠 Comment fast!

1 week ago | [YT] | 1

apni coding

πŸ’‘ Brain Teaser! πŸ€”
Which CSS property is used to change the text color?
🧠 Drop your colorful answers below! 🎨

1 week ago | [YT] | 1

apni coding

πŸ’‘ Brain Teaser! πŸ€”
Which tag is used to create a dropdown list in HTML?
🧠 Let's see who gets it right!

1 week ago | [YT] | 0