Created
July 23, 2019 05:46
-
-
Save Raziel422/de65633ee27e1c518fcdc49cb741e6f0 to your computer and use it in GitHub Desktop.
Dart - Array
This file contains 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
void main() { | |
List<int> things = [1, 2, 3]; | |
predefined functions to work with arrays | |
things.forEach() | |
things.reduce() | |
things.last; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment