OneBite.Dev - Coding blog in a bite size

Declare An Array In Dart

Code snippet for how to Declare An Array In Dart with sample and detail explanation

Dart is an object-oriented programming language that is highly useful when building web, server, and mobile applications. It includes a built-in support for arrays, which are ordered groups of items. This article guides you on how to declare an array in Dart in very simple steps.

Code snippet for Declaring an Array in Dart

Here is a straightforward sample of declaring an array in Dart:

void main() { 
var list = ['apple', 'banana', 'cherry']; 
print(list); 
} 

Code Explanation for Declaring an Array in Dart

The above code snippet is a simple demonstration of how you can declare and define an array in Dart. Below, we will dissect the code to understand how it works:

In Dart we use the keyword ‘var’ to declare a variable. Here ‘list’ is our variable name:

var list = ['apple', 'banana', 'cherry']; 

This line of code initializes an array ‘list’. Inside the square brackets [ ], we have defined our array elements. In this case, ‘apple’, ‘banana’, and ‘cherry’ are the elements of our array.

The next line of our code is about printing the array:

print(list); 

With this line, Dart will output the entire ‘list’ array. If you run the code, you should see this in your console output:

[apple, banana, cherry]

That’s it, pretty straightforward! Arrays are very useful as they allow us to store multiple values in a single variable. You have now learned how to declare an array in Dart. Play around with additional elements and read more about Dart’s array handling to deepen your understanding and efficiency in Dart programming.

dart