Guest User

Untitled

a guest
Oct 18th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Animal {
  2. public color;
  3. public constructor(color){
  4. this.color = color;
  5. }
  6. }
  7. var cat = new Animal("red");
  8. alert(cat.color);
Add Comment
Please, Sign In to add comment