Реализуй функцию getTotal в файле helper.js.

Она должна вернуть сумму всех элементов массива.

Массив будет содержать только числа.

Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим

helper.js

export const getTotal = (arr) => {
  return 0;
}

solution.js

/**
 * Implement getTotal function in helper.js
 *
 * It should return return the sum of all elements in the array
 *
 * Array will only contain numbers
 * */

import { getTotal } from './helper.js';

const revenue = [10, 10, 20, 55, 1, 5, 12, 15];

console.log(`For the array ${revenue}, total is ${getTotal(revenue)}`);