2014-10-18 15:42:36 +11:00

7 lines
89 B
JavaScript

"use strict";
nums.forEach(function(v) {
if (v % 5 === 0) {
fives.push(v);
}
});