Map the Debris

const orbitalPeriod = arr => {
  const GM = 398600.4418;
  const earthRadius = 6367.4447;
  const root = 2 * Math.PI

  const orbitalPeriods = arr.map(elem => {
    let avgAlt = elem.avgAlt // avgAlt from current looped object
    delete elem.avgAlt // Delete avgAlt from the object
    const numerator = (earthRadius + avgAlt)**3 // Power of 3 or power of x(**x)
    const innerRoot = Math.sqrt(numerator / GM) // Square root
    const orbitalPeriod = Math.round(innerRoot * root); // Round a number to its nearest integer
    
    // Since we are using map, we return a new object of all the initial elements and the new one
    return {
      ...elem,
      orbitalPeriod
    }

  })

  return orbitalPeriods
}

orbitalPeriod([{name: "iss", avgAlt: 413.6}, {name: "hubble", avgAlt: 556.7}, {name: "moon", avgAlt: 378632.553}]);

// With love @kouqhar

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source