Hi, I’m Muhammad Farhan, the creator of The Providers.

This channel is dedicated to helping beginners and aspiring developers learn Web Development through practical tutorials and complete courses on HTML, CSS, JavaScript, Bootstrap, PHP, MySQL, and more.

With experience as a Senior Software Developer and a Senior Web Development Instructor at Aptech, I focus on teaching real-world skills that can help you start and grow a career in tech.
Thank you for being part of this community. Your support, subscriptions, and shares help more learners discover valuable programming content.

Keep learning, keep building, and keep improving — consistent progress every day leads to success.
Subscribe for web mastery!
Find source code and resources at theproviders.tech/
For any inquiries, feel free to contact us at theproviders98@gmail.com


The Providers

Fill in the blank to declare a variable.

_____ name = "Farhan";

12 hours ago | [YT] | 2

The Providers

Fill in the blank to print Hello World

_____("Hello World");

17 hours ago | [YT] | 1

The Providers

What's wrong with this code?

let score = 80;

if(score >= 50);
{
console.log("Pass");
}

1 day ago | [YT] | 2

The Providers

What's wrong with this code?

let user = null;

console.log(user.name);

1 day ago | [YT] | 1

The Providers

What's wrong with this code?

for(let i = 1; i <= 5; i++){
if(i === 3){
break;
}
}

console.log(i);

2 days ago | [YT] | 1

The Providers

What's wrong with this code?

let arr = [1, 2, 3];

arr.push[4];

console.log(arr);

2 days ago | [YT] | 0

The Providers

What's wrong with this code?

let text = "JavaScript";

console.log(text.toUppercase());

3 days ago | [YT] | 1

The Providers

What's wrong with this code?

let num = 10;

switch(num){
case "10":
console.log("Matched");
}

3 days ago | [YT] | 1

The Providers

What's wrong with this code?

function greet() {
console.log(message);
}

greet();

let message = "Hello";

4 days ago | [YT] | 3

The Providers

What's wrong with this code?

let arr = [1, 2, 3];

console.log(arr[-1]);

4 days ago | [YT] | 3