Created
June 3, 2017 00:22
-
-
Save dhust/96dff715d3b4079a34a2c91c20725946 to your computer and use it in GitHub Desktop.
// source http://jsbin.com/dahasaj
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
<script id="jsbin-javascript"> | |
var number = 5; | |
var text = '5'; | |
console.log(number); | |
console.log(text); | |
console.log(number == text); | |
console.log(number === text); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var number = 5; | |
var text = '5'; | |
console.log(number); | |
console.log(text); | |
console.log(number == text); | |
console.log(number === text);</script> |
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
var number = 5; | |
var text = '5'; | |
console.log(number); | |
console.log(text); | |
console.log(number == text); | |
console.log(number === text); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment