Online HTML Editor
Javascript Online Compiler
index.html
Change Theme
Compress code
Uncompress code
Download Code
Clear Code
Copy Code!
RunĀ
Click to run or ctrl+s
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Javascript - if else statement</title> </head> <body> <h2>else statement executes when condition is false.</h2> <p>Check console. Press <kbd>F12</kbd>.</p> <script> var a = 15; if (a == 10) { console.log("True, a = 10"); } else { console.log("False, a is not equal to 10"); } </script> </body> </html>
RunĀ