/* A class is a blue print that you create objects from*/ /* How to create a class in javascript in it's simplest form*/ class Fruit{ } var apple =new Fruit ();