Created
June 17, 2020 12:31
-
-
Save webmaster128/05a3f08c3af7242304d362406de6f943 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1 item | |
| let user = new Person("Susi"); | |
| // 2 items | |
| let userA = new Person("Susi"); | |
| let userB = new Person("Marc"); | |
| // 3 items | |
| let users = [ | |
| new Person("Susi"), | |
| new Person("Marc"), | |
| new Person("Chris"), | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment