<!doctype html>

<html>
  <head>
    <link rel="stylesheet" href="lib/style.css">
    <script src="lib/classProperties.js"></script>
  </head>

  <body>
    <h1>Hello Plunker!</h1>
  </body>
</html>
class Recipe {
    constructor(name) {
        this.name = name;
    }
}

class Pasta extends Recipe {
    tasty = true;
    type = 'Italian';
}