freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/rosetta-code/averages-root-mean-square.a...

807 B

title id challengeType videoUrl localeTitle
Averages-Root mean square 594da033de4190850b893874 5

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(typeof rms === "function", "<code>rms</code> is a function.");'
  - text: ''
    testString: 'assert.equal(rms(arr1), answer1, "<code>rms([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])</code> should equal <code>6.2048368229954285</code>.");'

Challenge Seed

function rms (arr) {
  // Good luck!
}

After Test

console.info('after the test');

Solution

// solution required