mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-23 00:13:21 +03:00
ab6c6d959d
- Δημιουργία script για παραγωγή documention του κώδικα - Μικρές διορθώσεις
10 lines
No EOL
218 B
JavaScript
10 lines
No EOL
218 B
JavaScript
/**
|
|
@constructor
|
|
*/
|
|
function Singer() {
|
|
|
|
this.tralala = function() { // method of constructor Singer
|
|
/** document me */
|
|
this.isSinging = true; // setting a member of constructor Singer
|
|
};
|
|
} |