diff --git a/curriculum/js0/6.js b/curriculum/js0/6.js index c65fcb78d..f1c37a8a7 100644 --- a/curriculum/js0/6.js +++ b/curriculum/js0/6.js @@ -7,7 +7,8 @@ */ const solution = (a, b) => { - return true; + if (a>b) return true + return false; }; module.exports = {