-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path32-clout.js
41 lines (32 loc) · 1.05 KB
/
32-clout.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Clout 😎
// Codédex
const recentTikTokViews = [1932, 2300, 453, 5222, 6733, 7402, 8334];
const recentInstagramViews = [936, 2576, 453, 7013, 5489, 7402, 3921];
const recentYouTubeViews = [2300, 453, 5222, 989, 6733, 7402, 2789];
function mean(viewsArray) {
let totalViews = 0;
for(let i = 0; i < viewsArray.length; i++) {
totalViews += viewsArray[i];
}
return totalViews / viewsArray.length;
}
function median(viewsArray) {
const sortedStats = viewsArray.sort(function(a, b) { return a - b; });
const middleIndex = Math.floor(viewsArray.length / 2);
return sortedStats[middleIndex];
}
// TikTok
console.log("TikTok");
console.log("Mean:", mean(recentTikTokViews));
console.log("Median:", median(recentTikTokViews));
console.log();
// Instagram
console.log("Instagram");
console.log("Mean:", mean(recentInstagramViews));
console.log("Median:", median(recentInstagramViews));
console.log();
// YouTube
console.log("YouTube");
console.log("Mean:", mean(recentYouTubeViews));
console.log("Median:", median(recentYouTubeViews));
console.log();