Skip to content

Commit

Permalink
completed #10
Browse files Browse the repository at this point in the history
  • Loading branch information
kinwail committed Jun 12, 2018
1 parent 0bb1c77 commit 98c1cdb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions exercises.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,14 @@ console.log(dirty30(10,20,40));
* Console.log your result.
*/



function evenStevens(num){
if(num%2 === 0){
return true
}else{
return false
}
}
console.log(evenStevens(3))

/*
* #11
Expand Down

0 comments on commit 98c1cdb

Please sign in to comment.