A Pen by Andria Barratt on CodePen.
Created
May 1, 2020 03:59
-
-
Save akbarratt/bfaff884012cac6da70a42445938654e to your computer and use it in GitHub Desktop.
Demonstrating Conditionals
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let theNumber = Number(prompt("Pick a number")); | |
// console.log("Your number is the square root of " + theNumber * theNumber); | |
if (!Number.isNaN(theNumber)) { | |
console.log("Your number is the square root of " + theNumber * theNumber); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment