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!
Hey everyone! I'm planning to start a TypeScript series on the channel. Would you be interested in a Beginner to Advanced journey covering everything from the basics to real-world usage? Let me know below! π What kind of TypeScript content would you prefer?
apni coding
π’ Poll Time!
Hey everyone! I'm planning to start a TypeScript series on the channel. Would you be interested in a Beginner to Advanced journey covering everything from the basics to real-world usage? Let me know below! π
What kind of TypeScript content would you prefer?
11 hours ago | [YT] | 0
View 0 replies
apni coding
Hoisting Headache
console.log(a);
var a = 5;
1 day ago | [YT] | 2
View 0 replies
apni coding
Shadowing Alert!
let a = 10;
{
let a = 20;
console.log(a);
}
2 days ago | [YT] | 1
View 0 replies
apni coding
Const confusion
const x = 42;
x = 50;
3 days ago | [YT] | 1
View 1 reply
apni coding
Letβs scope it!
{
let a = 5;
}
console.log(a);
4 days ago | [YT] | 1
View 2 replies
apni coding
Whatβs the output?
function test() {
if (true) {
var x = 10;
}
console.log(x);
}
test();
5 days ago | [YT] | 2
View 0 replies
apni coding
JavaScript Scope Fun! π§
Whatβs the scope of a var declared variable?
πββοΈ Comment your guess fast!
6 days ago | [YT] | 1
View 0 replies
apni coding
π‘ Brain Teaser! π€
In Node.js, which of these is a built-in module?
π§ Quick answer?
1 week ago | [YT] | 0
View 0 replies
apni coding
π‘ Brain Teaser! π€
Which of these is used to pass data from parent to child in React?
π§ Prove your skills!
1 week ago | [YT] | 0
View 0 replies
apni coding
π‘ Brain Teaser! π€
Which of these correctly checks if a value is exactly equal in JavaScript?
π§ Comment fast!
1 week ago | [YT] | 1
View 0 replies
Load more