void main() {
var students = ['rajiv', 'harish', 'divya', 'aslam'];
print("We have " + students.length.toString() + " students in the class today");
}
How to print the length of an array without using conversion method like toString()?