سلام به 2 طریق
-
با استفاده از Function تابع
-
با استفاده از literals متغیر
1:
function Apple (type) {
this.type = type;
this.color = "red";
this.getInfo = getAppleInfo;
}
function getAppleInfo() {
return this.color + ' ' + this.type + ' apple';
}
در اینجا هم خواندن اطلاعات ار تابع ها :
var apple = new Apple('macintosh');
apple.color = "reddish";
alert(apple.getInfo());
حالا از طریق متغیر :
2:
var apple = {
type: "macintosh",
color: "red",
getInfo: function () {
return this.color + ' ' + this.type + ' apple';
}
}
در اینجا هم خواندن اطلاعات ار متغیر :
apple.color = "reddish";
alert(apple.getInfo());