Last active
June 14, 2019 03:09
-
-
Save karkranikhil/4fdf7343fd0bfa29e0660a0ee1b55770 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| var firstname = "nikhil1" | |
| var lastname = "karkra" | |
| var firstname = "nikhil" | |
| document.getElementById('demo').innerHTML = `Hey i am ${firstname} ${lastname}, My name coming from Javascript` | |
| var a = NaN; | |
| if (a === NaN) { // Noncompliant; always false | |
| console.log("a is not a number"); // this is dead code | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment