Array Utility Functions
Description
This module provides several utility functions for manipulating arrays in JavaScript.
Installation
You can install this library via npm:
``
bash
npm i array_functionalltiy
`
Usage
$3
Calculates the sum of all elements in the array.
$3
Removes duplicate elements from the array.
$3
Finds the maximum value in the array.
$3
Finds the minimum value in the array.
$3
Reverses the order of elements in the array.
$3
Calculates the average of all elements in the array.
$3
Reverses each word in the array.
$3
Calculates the sum of all even numbers in the array.
$3
Removes elements from the array within the specified index range.
$3
Calculates the sum of squares of all elements in the array.
Example
``javascript
const arrUtils = require('./arrUtils');
const arr = [1, 2, 3, 4, 5];
console.log(arrUtils.sum(arr)); // Output: 15
console.log(arrUtils.removeDuplicates(arr)); // Output: [1, 2, 3, 4, 5]
console.log(arrUtils.max(arr)); // Output: 5
console.log(arrUtils.min(arr)); // Output: 1
console.log(arrUtils.reverse(arr)); // Output: [5, 4, 3, 2, 1]
console.log(arrUtils.average(arr)); // Output: 3
console.log(arrUtils.reverseWords(['hello', 'world'])); // Output: ['olleh', 'dlrow']
console.log(arrUtils.sumOfEvenNumbers(arr)); // Output: 6
console.log(arrUtils.removeElementsByIndexRange(arr, 1, 3)); // Output: [1, 5]
console.log(arrUtils.sumOfSquares(arr)); // Output: 55
License
This library is licensed under the
ISC License.
Author
Created by Yugal.