birds

parrot pinup

  
    "use strict"
    var Bird = function Bird(name, kind, locality,
     feelings, thoughts){
      this.name = name;
      this.kind = kind;
      this.locality = locality;
      this.feelings = feelings;
      this.thoughts = thoughts;
      this.expression = function(){
        return this.thoughts;
      };
      this.help = function(){
        return "please stop!";
      };
      this.reflect = function(){
        return "I sure do miss" + " " + this.locatlity;
      };
      this.concious = function(){
        return "I wonder if my name was always" + " " + this.name;
      };
      this.jamba = function(){
        return "As bad as it is being an abused bird, at least I'm not coding in Javascript right now"
      };
    }
    var manny = new Bird("Manny", "Finch", "Easter Island",
     "Sad", "I wish I had a bigger beak.");
    var danny = new Bird("Danny", "Parrot", "Brazil",
    "Curious", "Why can't I come up with anything good to say?");
    var fannie = new Bird("Fannie", "Penguin", "Antarctica",
     "Desperate", "All my friends lost their homes");
    var randy = new Bird("Randy", "Robin", "North America",
     "Confined", "My owner has been lying there an awfully long time.");
     
    manny.expression();
    manny.help();
    manny.reflect();
    manny.concious();
    manny.jamba();
    danny.expression();
    danny.help();
    danny.reflect();
    danny.concious();
    danny.jamba();
    fannie.expression();
    fannie.help();
    fannie.reflect();
    fannie.concious();
    fannie.jamba();
    randy.expression();
    randy.help();
    randy.reflect();
    randy.concious();
    randy.jamba();