fork download
  1. function Dalek(type) {
  2. this.enemy = "The Doctor";
  3. this.type = type;
  4.  
  5. this.shout = function() {
  6. return "EXTERMINATE!";
  7. };
  8. }
  9.  
  10. const redDalek = new Dalek("Supreme");
  11. console.log(redDalek.shout()); // EXTERMINATE!
Success #stdin #stdout 0.04s 16704KB
stdin
Standard input is empty
stdout
EXTERMINATE!