Last active
March 6, 2019 01:03
-
-
Save cherscarlett/eec0eed8cf92a5cb8f53956d59803984 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
| // assume a function retrieves data from the repositories and leaves us with a 2-dimensional array | |
| // the size of the number of the repositories, and each repository's array containing | |
| // key value paired objects of the byte size and name of the language | |
| // repositories: | |
| // [ | |
| // [ | |
| // { | |
| // name: 'CSS', | |
| // size: 2000 | |
| // }, | |
| // { | |
| // name: 'Javascript', | |
| // size: 3000 | |
| // } | |
| // ], | |
| // [ | |
| // { | |
| // name: 'Vue', | |
| // size: 10000 | |
| // }, | |
| // { | |
| // name: 'Javascript', | |
| // size: 5000 | |
| // } | |
| // ] | |
| // ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment