diff --git a/basics-assignment-3-problem/app.js b/basics-assignment-3-problem/app.js index f6a15cb..8d9cd7d 100644 --- a/basics-assignment-3-problem/app.js +++ b/basics-assignment-3-problem/app.js @@ -18,9 +18,10 @@ const app = Vue.createApp({ status() { if (this.result < 37) { return "Not there yet"; - } - if (this.result > 37) { + } else if (this.result > 37) { return "Too much!"; + } else if (this.result === 37) { + return this.result; } }, },