Skip to content

Commit d9653a3

Browse files
problem 32 completed
1 parent 9d3a7af commit d9653a3

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

problem32/problem.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Write a function findLeapYear() that will take the array
2+
[2023,2024,2025,2028,2030] as the input parameter and will check if
3+
each year is a leap year. If a year is a leap year insert that year in a
4+
new array, return the new array and print the result.

problem32/problem32.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/* Write a function findLeapYear() that will take the array
2+
[2023,2024,2025,2028,2030] as the input parameter and will check if
3+
each year is a leap year. If a year is a leap year insert that year in a
4+
new array, return the new array and print the result. */
5+
6+
7+
8+
function findLeapYear(years){
9+
const leapYear = [];
10+
for( let i = 0; i < years.length; i++){
11+
const index = i;
12+
const year = years[index];
13+
if(( year % 4 === 0) && (year % 100 !== 0) || (year % 400 === 0) ){
14+
leapYear.push(year);
15+
}
16+
}
17+
18+
return leapYear;
19+
20+
}
21+
22+
23+
const randomYears = [2023,2024,2025,2028,2030];
24+
const leapYear_Year = findLeapYear(randomYears);
25+
26+
console.log("Array of leap year",leapYear_Year );

0 commit comments

Comments
 (0)