Bonus Exercises!

First off thanks for adding these having already completed the course previously this is a great reveiw. I am still really slow and this helps a lot.

My question is the exercises jump from 10 to 17 did I miss something?

2 Likes

Hey @Baidis, glad to know you like the change we made, it was based on many suggestions from you guys (students).

Now we might have order the lessons incorrectly, thats why the order of the exercises have changed, please let me know which lesson exactly and we will fix it asap :nerd_face:

Carlos Z

@thecil seems to be fixed now :rofl: @ivan

 //21. Height

        var height = prompt("give me your height in cm");

        if (height > 9000) {
            console.log("You probably typed the wrong number");
        } else {
            console.log("You are shorter then Ivan");
        }
1 Like