class
Example of the ES6 class declaration.
class Shape {
constructor(){
// Constructor code
}
color(){
// Define shape color
}
size(){
// Define shape size
}
}
var newShape = new Shape();
newShape.color();
copy