Answers for "how to create array"

4

how to declare an array in javascript

var array = [item1, item2, .....];
/*

  item1 and item2 could be a string (which is 
  a letter written in double or single quotes like this "string" or 'string') or 
  a number (which is just a normal number on the keypad) or a boolean (which is 
  an experssion which either returns to true of false) and the ..... means that 
  the inputs can be infinite.
  
*/
Posted by: Guest on July-23-2021
2

create javascript array

let arr = new Array(element0, element1, ..., elementN)
let arr = Array(element0, element1, ..., elementN)
let arr = [element0, element1, ..., elementN]
Posted by: Guest on July-06-2021
2

how to create an array in javascript

let myVar = ["1","2","3"];
Posted by: Guest on December-04-2020
3

how to make a array in javascript

//Im using a let type variable for the example because it's what i reccomend

let exampleArray = ["Example", "Lorem Ispum Dolor", "I think you've got it"]

//Here's how you select a single object in the list

exampleArray[1] 

/*In Javascript the arrays start counting at 0 which means i selected the 2nd
object in the list(Lorem Ispum Dolor) so if i wanna select the first array i
must type*/

exampleArray[0]

/*Now let's say you want to display it on the console, like let's say you are 
coding in Node.js and you wanna see the value of the array.
P.S: In the example im gonna show all the values of the array.*/

console.log(exampleArray[0, 1, 2]
Posted by: Guest on October-07-2020
0

how to use arrays java

// How to use arrays 
// Julian
 public static void main(String[] args)
   {
   // Initialize array
      int[] arrNum = {25, 23, 15, 20, 24};
   // Recorrerlo
      for(int a = 0; a < arrNum.length; a++)
      {
         System.out.println(arrNum[a]);
      }
   }
Posted by: Guest on January-18-2021
0

how to declare an array

redim Friday(NumFRdays)
Posted by: Guest on March-17-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language