Wednesday, 17 October 2012

Outcome - TASK 1

Whoo have finished the first coding task!! I found the first code wasnt that difficult however the hardest bit was just getting started and getting your head around it!!.....


// Task 1

var tempreature = (prompt("Whats the tempreature outside???"));
if (tempreature < 0)
{
alert("It's freezing out there!");
}
else
{
if (tempreature >25)
{
console.log(tempreature);
alert("It's hot out there!");
}
else
{
alert("You don't need skis or board shorts!");
}
}


No comments:

Post a Comment