چطوری میتونم یک کلاس مثل کلاسای پی اچ پی داخل جاوا اسکریپت بسازم و اینکه از اون بتونم یک شی بسازم
سلام
کلاس ها در نسخه ی es6 از جاوااسکریپت برای مثال به این صورت مطرح می شوند:
class Polygon {
constructor(height, width) {
this.name = 'Polygon';
this.height = height;
this.width = width;
}
sayName() {
console.log('Hi, I am a ', this.name + '.');
}
}
let p = new Polygon(300, 400);
p.sayName();
console.log('The width of this polygon is ' + p.width);
class User {
constructor(name) {
this.name = name;
}
sayHi() {
alert(this.name);
}
}
let user = new User("John");
user.sayHi();
آیا مایل به ارسال نوتیفیکیشن و اخبار از طرف راکت هستید ؟