UNPKG

gulp-es6-browserify-browsersync-boilerplate

Version:
12 lines (8 loc) 264 B
/** * Created by Joseph Tan on 16/06/2016. */ import Polygon from "./objects/Polygon"; let polygon = new Polygon(); polygon.height = 10; polygon.width = 10; console.log("Polygon height:" + polygon.height, "Polygon width" + polygon.width);