array in array code example

Example 1: java string array

// array of 5 strings
String[] arr = new String[5]

arr[0] = "Happy";
arr[1] = "Birthday";
arr[2] = "To";
// etc...

Example 2: javascript element in array

var fruits = ["Banana", "Orange", "Apple", "Mango"];

var n = fruits.includes("Mango");

Example 3: javascript array

//create an array like so:
var colors = ["red","blue","green"];

//you can loop through an array like this:
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}

Example 4: how to make an array in javascript

var names = ["Sanjith", "Pranav", "Aadya", "Saharsh"]

Example 5: java array

// ! IMPORTANTE !
// in JAVA an array is not the same as an ArrayList object!!
// 1 - declare, instanciate and populate
int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; 
// 2 - declare and instanciate an int array with maxSize
// note: the index goes between 0 and maxSize-1
int newarr[] = new int[maxSize];
// 2.1 - insert the value n on the position pos
newarr[pos] = n; 
// 2.2 - insert values recursively
for (i = 0; i < maxSize; i++) { newarr[i] = arr[i]; }

Example 6: js in_array

var a = [1, 2, 3];
a.includes(2); // true 
a.includes(4); // false

Tags:

Php Example