skip to Main Content

Javascript – I have an array of percentages I want to find the average to

I'm using React JS, and I'm trying to find the average of this array: [ "75.0%", "50.0%", "66.66666666666666%", "66.66666666666666%", "33.33333333333333%", "58.333333333333336%", "50.0%", "66.66666666666666%", "41.66666666666667%", "75.0%", "41.66666666666667%", "50.0%", "50.0%", "72.72727272727273%" ] Here's my current code: const percentCorrects = [ "75.0%", "50.0%",…

VIEW QUESTION
Back To Top
Search