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 trialxin song
1,929 PointsWithout parseFloat, why it's still calculating.
var num1 = prompt("Give 1st number: ");
var ps1= parseFloat( num1 );
var num2 = prompt("Give 2nd number: ");
var ps2 = parseFloat( num2 );
document.write( num1 + " + " + num2 + " = " + (ps1 + ps2) + "<br>");
//==================Why ( num1 * num2 ) still getting calculated here?===
document.write( num1 + " * " + num2 + " = " + ( num1 * num2 ) + "<br>");
//==========================================================
document.write( num1 + " / " + num2 + " = " + ( ps1 / ps2 ) + "<br>");
document.write( num1 + " - " + num2 + " = " + ( ps1 - ps2 ) );
console.log("OK");
1 Answer
KRIS NIKOLAISEN
54,971 PointsThat's just the behavior and works for subtraction and division as well. From MDN. Addition is the only operator that behaves differently (concatenates) with strings.