Answers for "how to add elements to an array"

1

how to add a new item in an array in javascript

let array = ["Chicago", "Los Angeles", "Calgary", "Seattle", ]
  // print the array 
console.log(array)
  //Adding a new item in an array without touching the actual array     
array.push('New Item') < variable_name > .push( < What you want to add > )
  //How many items does the array have?
console.log("This array has", array.length, "things in it")
Posted by: Guest on March-21-2021
7

java add element to existing array

//original array
String[] rgb = new String[] {"red", "green"};
//new array with one more length
String[] rgb2 = new String[rgb.length + 1];
//copy the old in the new array
System.arraycopy(rgb, 0, rgb2, 0, rgb.length);
//add element to new array
rgb2[rgb.length] = "blue";
//optional: set old array to new array
rgb = rgb2;
Posted by: Guest on June-20-2020
2

append an array

// initialize array
var arr = [
  "Hi",
  "Hello",
  "Bonjour"
];

// append new value to the array
arr.push("Hola");

console.log(arr);
Posted by: Guest on February-15-2020
4

how to add objects in array java

car redCar = new Car("Red");
car Garage [] = new Car [100];
Garage[0] = redCar;
Posted by: Guest on February-13-2020

Code answers related to "how to add elements to an array"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language