mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
22 lines
No EOL
371 B
JavaScript
22 lines
No EOL
371 B
JavaScript
Call(
|
|
{
|
|
methodA: function()
|
|
{
|
|
this.id = this.createUUID();
|
|
},
|
|
|
|
valueOf: function()
|
|
{
|
|
return this.id;
|
|
},
|
|
|
|
toString: function()
|
|
{
|
|
return this.id;
|
|
}
|
|
});
|
|
|
|
//Simple inheritance model with correct constructor
|
|
function Test() {}
|
|
function Test2() { Test.call(this); }
|
|
Test2.prototype = Object.create(Test.prototype, {constructor: {value: Test2}}); |