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

Javascript – Node JS: Loop round grouped by array

I've got data like this [ [ '@test','1.2.6-unstable' ], [ '@test','1.3.2-unstable' ], [ '@test','1.4.6-unstable' ], [ '@test2','4.0.1-unstable' ], [ '@test2','4.0.2-unstable' ], [ '@test2','4.0.3-unstable' ], [ '@test3','2.2.0-unstable' ], [ '@test3','2.2.3-unstable' ], [ '@test3','2.2.9-unstable' ], ... ] and I'm trying to group…

VIEW QUESTION
Back To Top
Search