DEV Community

wasifali
wasifali

Posted on

How we declare one dimensional array by using JavaScript and Python language

Declaring One Dimensional Array

In programming, particularly in languages like JavaScript, Python, Java, C++, and others, arrays are fundamental data structures used to store collections of elements of the same type. Here, I'll explain how to declare and use a one-dimensional array, which is the simplest form of an array that stores elements in a single row or sequence.

Declaration and Initialization

JavaScript Example

In JavaScript, arrays are dynamic and can hold elements of different types. Here's how you declare and initialize a one-dimensional array:

// Declaring and initializing an array with elements
let numbers = [1, 2, 3, 4, 5];

// Accessing elements in the array
console.log(numbers[0]); // Outputs: 1
console.log(numbers[2]); // Outputs: 3

// Adding elements to the array
numbers.push(6); // Adds 6 to the end of the array
console.log(numbers); // Outputs: [1, 2, 3, 4, 5, 6]

// Array length
console.log(numbers.length); // Outputs: 6
Enter fullscreen mode Exit fullscreen mode

Python Example

In Python, arrays are implemented using lists, which are versatile and can hold elements of different types as well:

# Declaring and initializing an array with elements
numbers = [1, 2, 3, 4, 5]

# Accessing elements in the array
print(numbers[0])  # Outputs: 1
print(numbers[2])  # Outputs: 3

# Adding elements to the array
numbers.append(6)  # Adds 6 to the end of the array
print(numbers)  # Outputs: [1, 2, 3, 4, 5, 6]

# Array length
print(len(numbers))  # Outputs: 6
Enter fullscreen mode Exit fullscreen mode

Explanation of the Examples

Declaration and Initialization
In both JavaScript and Python, arrays are declared by enclosing elements in square brackets [ ].
Elements in the array are separated by commas ,.
Accessing Elements
Elements in arrays are accessed using their index. In JavaScript and Python, arrays are zero-indexed, meaning the first element is at index 0, the second at index 1, and so on.
Adding Elements
Both languages provide methods (push() in JavaScript and append() in Python) to add elements to the end of the array.
Array Length
The length of an array can be determined using the length property in JavaScript or the len() function in Python.

Important Notes

Type Flexibility
JavaScript arrays can hold elements of different types (number, string, object, etc.), while Python lists can also hold heterogeneous elements.
Dynamic Size
Both JavaScript arrays and Python lists are dynamic in size, meaning they can grow or shrink as needed.
Indexing
Remember that array indices start at 0. Accessing an index beyond the array's length results in an error or undefined/null value.
Arrays are versatile and essential in programming, providing efficient ways to store and manipulate collections of data. Understanding their basics and how to work with them is crucial for building robust applications.

Program

// Declare and initialize an array of numbers
let numbers = [3, 7, 1, 9, 5];
// Print the array
console.log("Array:", numbers);

// Accessing elements by index
console.log("Element at index 0:", numbers[0]); // Output: 3
console.log("Element at index 2:", numbers[2]); // Output: 1

// Calculate the sum of all elements in the array
let sum = 0;
for (let i = 0; i < numbers.length; i++) {
    sum += numbers[i];
}

// Print the sum of array elements
console.log("Sum of array elements:", sum); // Output: 25
Enter fullscreen mode Exit fullscreen mode

Explanation of the Program:

Array Declaration and Initialization:
let numbers = [3, 7, 1, 9, 5];: This line declares an array named numbers and initializes it with five elements: 3, 7, 1, 9, and 5.
Printing the Array:
console.log("Array:", numbers);: This prints the entire array numbers to the console.
Accessing Array Elements:
console.log("Element at index 0:", numbers[0]);: Accesses and prints the element at index 0 of the array (3 in this case).
console.log("Element at index 2:", numbers[2]);: Accesses and prints the element at index 2 of the array (1 in this case).
Calculating the Sum of Array Elements:
let sum = 0;: Initializes a variable sum to 0.
for (let i = 0; i < numbers.length; i++) { sum += numbers[i]; }: Iterates through each element of the array using a for loop, adding each element to sum.
Printing the Sum:
console.log("Sum of array elements:", sum);: Prints the calculated sum of all elements in the array (25 in this case).

Top comments (0)