אני יודע שכבר מאות פוסטים נכתבו על הדבר הזה, אבל תמיד נוח שיש משהו מרוכז במקום אחד,
ולכן כמה דוגמאות פשוטות ליצירת אובייקטים ב - JavaScript והשימוש בהם.
ולכן כמה דוגמאות פשוטות ליצירת אובייקטים ב - JavaScript והשימוש בהם.
// declartion class a with private function
function x()
{
this.id = 0;
function getid()
{
// undefined - because this meanse the private
alert('x' + this.id);function
}
getid();
}
var nx = new x();
// error - undefined cuz it is private function
//x.getid();
x();
// declartion class a with public function
function a()
{
this.id = 0;
this.getid = function()
{
alert('a' + this.id);
}
this.getid();
}
// using class a
var b = new a();
b.getid();
// object creation on the fly
var o = {
id: 0,
getid: function()
{
alert('o' + this.id);
}
}
o.getid();
Comments
Post a Comment