Skip to content

Commit

Permalink
completed #8
Browse files Browse the repository at this point in the history
  • Loading branch information
kinwail committed Jun 11, 2018
1 parent 032860a commit ce9c09c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion exercises.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,14 @@ console.log(notEqual('great','ness'));
* Console.log your result.
*/


function spareChange(money){
if(money > 100){
return true
}else{
return false
}
}
console.log(spareChange(50));

/*
* #9
Expand Down

0 comments on commit ce9c09c

Please sign in to comment.