JSFiddle - React, Tailwind, and code Playground

by kukicvladimir

JavaScript

function PerishableFood(name,lastBuyDate,quantity, expirationDate) {
   this.item = name;
   this.buyDate = new Date(lastBuyDate);
   this.quantity = quantity;
   this.expireDate = new Date(expirationDate);
    }
  var milk = new PerishableFood('1% Milk','07/05/2017',1, '07/17/2017');
  var butter = new PerishableFood('Test', '07/05/2017',2,'8/30/2017');

console.log(milk.expireDate)