JavaScript CONSTRUCTORS in 5 minutes! 🛠

preview_player
Показать описание
#JavaScript #tutorial #course

// constructor = special method for defining the
// properties and methods of objects

function Car(make, model, year, color){
}

const car1 = new Car("Ford", "Mustang", 2024, "red");
const car2 = new Car("Chevrolet", "Camaro", 2025, "blue");
const car3 = new Car("Dodge", "Charger", 2026, "silver");

Рекомендации по теме
Комментарии
Автор

// constructor = special method for defining the
// properties and methods of objects

function Car(make, model, year, color){
this.make = make,
this.model = model,
this.year = year,
this.color = color,
this.drive = function(){console.log(`You drive the ${this.model}`)}
}

const car1 = new Car("Ford", "Mustang", 2024, "red");
const car2 = new Car("Chevrolet", "Camaro", 2025, "blue");
const car3 = new Car("Dodge", "Charger", 2026, "silver");

console.log(car1.make);
console.log(car1.model);
console.log(car1.year);
console.log(car1.color);

console.log(car2.make);
console.log(car2.model);
console.log(car2.year);
console.log(car2.color);

console.log(car3.make);
console.log(car3.model);
console.log(car3.year);
console.log(car3.color);

car1.drive();
car2.drive();
car3.drive();

BroCodez
Автор

Well explained. Possibly one of few videos to cover it so well.

amitd
Автор

dude, i love your videos, you wont believe how much better you taught me javascript than those 12 hour courses

RedHeadphones
Автор

Thanks for taking the time to share this. Very explicit; it was so difficult tfor me to understand this term. Now it's clear to me; thanks indeed.

bamidelekarimu
Автор

thats a really fast lessons, i love that, tks mate

hoanginh
Автор

<*_> This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal. <_*>

piotrmazgaj
Автор

best explanation i found on youtube. thanks bud

chuksbrian
Автор

Simple as that. This is what I was looking for. Thanks a lot!

jakobo
Автор

Thank you for sharing it! It was easy to understand ! Keep up the good work!

michellegutierrez
Автор

thanks a lot dude ! Your videos already helped me understand some SQL concepts (that i needed for my classes) and now you helped me with that concept. Your explainations are crystal clear because it's explained in simple words and are exhaustive, so thanks !

osmane
Автор

Is there a reason why you did not use ES6 Class Constructor?

ParissYoungblood
Автор

Did you use a function to create Car because the only other way to create a template for an object is class?

szymonpiechutowski
Автор

Does JavaScript constructor method similar with Python “self” method?

GordonChao
Автор

When you say "I gotta explain constructers" it sounds like you're being forced

EledeRR
Автор

constructors looks a lot like objects in java.

Monray
Автор

Why in the constructors are ", " and not ";"?

futrozryby
Автор

Hii sir,
Which JAVA version is best for beginners -> JAVA 17 or JAVA 21 in 2023

czpphwb
Автор

please which software do you use for screen recording?

PrinceJeniFX
Автор

I can't get over... "this." Pun very intended... but seriously... why do we have to set "this.year = year"
"this.model=model"
Like... I am not understanding that...

jayroche
Автор

The way people break down constructors is very onfusing

WitchDimension