Codecademy JavaScript Project: Meal Maker

const menu = {
  _meal: '', 
  _price: 0,

  set meal(mealToCheck) {
    if(typeof mealToCheck === 'string') {
    this._meal = mealToCheck}
  },

  set price(priceToCheck) {
    if(typeof priceToCheck === 'number') {
    this._price = priceToCheck}
  }, 

  get todaysSpecial() {
    if (this._meal && this._price) {
      return `Today's Special is ${this._meal} for ${this._price}!`} else return 'Meal or price was not set correctly!'
    }
  }



menu.meal = 'potato';
menu.price = 23;
//menu._meal = 84;
//menu._price = 'potato';



console.log(menu.todaysSpecial);