-
Arrays
An array is like a box with lots of compartments. Each compartment can hold something different. For example, one compartment could hold a number and another could hold a letter. In programming, an array holds information in each compartment so that it can be easily accessed and used.
-
-
Variable Arrays
Php
Example of array in php.
<?php
$fruits = array('apple', 'banana', 'cherry');

print($fruits[1]); // banana
Javascript
Example of array in javascript.
var fruits = ['apple', 'banana', 'cherry'];

console.log(fruits[1]); // banana
Python
Example of array in python.
fruits = ['apple', 'banana', 'cherry']

print(fruits[1]) # banana
Dart
Example of array in dart.
void main() {
 var fruits = ['apple', 'banana', 'cherry'];

 print(fruits[1]); // banana
}
Go
Example of array in go.
package main

import "fmt"

func main() {
	var fruits = [3]string{"apple", "banana", "cherry"}

	fmt.Println(fruits[1]) // banana
}

-
-