Skip to content

Instantly share code, notes, and snippets.

View aaffriya's full-sized avatar
🎯
Focusing

Bhupender Yadav aaffriya

🎯
Focusing
View GitHub Profile
@carolineartz
carolineartz / calculations.js
Last active May 24, 2023 00:03 — forked from dbc-challenges/calculations.js
Calculate the sum, mean, and median of an array in JavaScript
/*
Write THREE functions: sum, mean, and median. Each accepts an array
and returns its respective calculation.
Below you will find driver code. Run the code in this file either from the command line
using Node.js or by pasting the code of this entire file into your
browser console. All tests will log 'true' in the console when
they pass--false, otherwise.