Is there a better way to add a default value to a Function object?
 function CountOfFruit(bowl){
    this.strawberries = bowl.strawberries
    this.blueberries = bowl.blueberries
    
   if (bowl.strawberries == ""){
     this.strawberries = "there is none"
   }
 }
 
     
    