Guest User

Untitled

a guest
Dec 17th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var a = "123";
  2. if(a == true){
  3. console.log("a is true"); //bunu yazdırmayacaktır.
  4. }
  5.  
  6. a = [];
  7. if(a){
  8. console.log("a is true"); //bunu yazdırmayacaktır.
  9. }
  10. if(a == false){
  11. console.log("a is false"); // a is false
  12. }
Add Comment
Please, Sign In to add comment