-
-
Save Modoo-Dev/a03ee0eb1ab18ff3d1cceba7acfbbafa to your computer and use it in GitHub Desktop.
dartPractice-collection
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<String> arguments) { | |
List nestedList = [['apple', 'orange'], [true,false], null,[1,'golf',3]]; | |
print('list 값: $nestedList'); | |
print('list 길이: ${nestedList.length}'); | |
print('마지막 item길이: ${nestedList.last.length}'); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment