Skip to content

Instantly share code, notes, and snippets.

@icodeforlove
Created October 14, 2009 20:55
Show Gist options
  • Save icodeforlove/210402 to your computer and use it in GitHub Desktop.
Save icodeforlove/210402 to your computer and use it in GitHub Desktop.
var userActivity = [
1.2,
2,
0,
74,
6,
3,
0
];
var userActivity = [
1.2,
2,
3,
14,
6,
3,
10
];
var weeklyScore = 0;
for (var i = 0; i < 7; i++) {
if (userActivity[i] == 0) {
weeklyScore += 100;
} else {
weeklyScore += userActivity[i];
}
}
console.log(weeklyScore);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment