Javascript Programming Tutorials, Guides & Best Practices
Explore 93+ expertly crafted javascript tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.
Adblocker Detected
It looks like you're using an adblocker. Our website relies on ads to keep running. Please consider disabling your adblocker to support us and access the content.
Tutorial
javascript
البرمجة الكائنية (OOP) في JavaScript: المفاهيم الأساسية والتطبيقات
الفئات هي القوالب التي نستخدمها لإنشاء الكائنات. في السابق، كانت JavaScript تعتمد على النماذج (prototypes) لإنشاء الكائنات، لكن منذ ES6، أصبحت الفئات (classes) جزءًا من اللغة.
class Car {
constructor(brand, model, year) {
this.brand = brand;
this.model = model;
this.year = year;
}
startEngine() {
console.log(`${this.brand} ${this.model} قد بدأ تشغيل المحرك!`);
}
stopEngine() {
console.log(`${this.brand} ${this.model} قد أوقف تشغيل المحرك.`);
}
}
const myCar = new Car("Toyota", "Corolla", 2020);
myCar.startEngine(); // Toyota Corolla قد بدأ تشغيل المحرك!Sep 26, 2024
Read More