Skip to content

Instantly share code, notes, and snippets.

@Raziel422
Created July 23, 2019 05:46
Show Gist options
  • Save Raziel422/de65633ee27e1c518fcdc49cb741e6f0 to your computer and use it in GitHub Desktop.
Save Raziel422/de65633ee27e1c518fcdc49cb741e6f0 to your computer and use it in GitHub Desktop.
Dart - Array
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