this.js 218 B

12345678910
  1. /**
  2. @constructor
  3. */
  4. function Singer() {
  5. this.tralala = function() { // method of constructor Singer
  6. /** document me */
  7. this.isSinging = true; // setting a member of constructor Singer
  8. };
  9. }