Advertisement
KodingKid

Basic Javascript Class

Apr 22nd, 2021
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Car {
  2. let myCar1 = new Car("Ferrari", 1970);
  3. let myCar2 = new Car("Alfa Romeo", 2000);
  4. }
  5. //More complicated, complex, and better classes coming up soon! Stay updated for that :)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement