Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript The Solution

Meg Cusack
Meg Cusack
11,448 Points

Two questions. Why does "undefined" show up? How to indent a block of code?

My code is identical to his but after I get the "reload the page message", the code still runs and I get the word "undefined" printed on my screen. Also, I saw him highlight several lines of code and indent them all at once. How is he doing that? Here is my code:

// declare program variables
var num1;
var num2;
var message;

// announce the program
alert("Let's do some math!");

// collect numeric input
num1 = prompt("Please type a number");
num1 = parseFloat(num1);
num2 = prompt("Please type another number");
num2 = parseFloat(num2);
if ( num2 === 0) {
    alert("The second number is 0. You can't divide by zero. Reload and try again.");
} else if (isNaN(num1) || isNaN(num2)){
   alert("At least one of the values you typed is not a number. Reload the page and try again.");
} 
else {

// build an HTML message
message = "<h1>Math with the numbers " + num1 + " and " + num2 + "</h1>";
message += num1 + " + " + num2 + " = " + (num1 + num2);
message += "<br>";
message += num1 + " * " + num2 + " = " + (num1 * num2);
message += "<br>";
message += num1 + " / " + num2 + " = " + (num1 / num2);
message += "<br>";
message += num1 + " - " + num2 + " = " + (num1 - num2);
}


// write message to web page
document.write(message);

2 Answers

Steven Parker
Steven Parker
230,274 Points

You see "undefined" because the final line is outside of the "else" block, and still runs even when the calculations are not done.

In a workspace, when you have a block of code highlighted, you can hold "control" and type close bracket ("Ctrl-]") to indent the block. Control with open bracket ("Ctrl-[") will move code back to the left.