zoukankan      html  css  js  c++  java
  • Javascript Basic Operation Extraction

    1.  logic operation : '&&' and '||'  .For this two logic operations,its' results are inconclusive.the difference between this two logic operations  and others is that they don't change the data type of the operands and also don't change the data type of the operation result. In the expression , this operator(&& and ||) will understand the type of the operands as the bool type ,so they can  execute bool operation.you can have a look below.

              

     1 <html>
     2         <head>
     3         <meta  http-equiv="content-type" charset="utf-8"/>
     4         <script type="text/javascript">
     5         var str = "hello";
     6         var obj = {};
     7         alert(str || obj);//str as string type ,obj as an object,return str("hello")
     8         alert(str && obj);//return obj
     9         alert(undefined || 123);//undefined as false,and return 123
    10         </script>
    11         </head>
    12         <body> 
    13         </body>
    14 </html>

    2.  comparison operation. For comparing two value type data,generally just compare their values.For comparing a value type data and a reference type data,first switch the reference type data to the same type as the value type data,then compare them.For comparing two reference type data,it's unmeaning and always return false.like below:

          

     1 <html>
     2         <head>
     3         <meta  http-equiv="content-type" charset="utf-8"/>
     4         <script type="text/javascript">
     5         var o1 = {};
     6         var o2 = {};
     7         var str = "123";
     8         var num = 1;
     9         var b0 = false;
    10         var b1 = true;
    11         var ref = new String();
    12         
    13         alert(b1 < num);//return false;
    14         alert(b1 <= num);//return true;
    15         alert(b1 > b0);//return true;
    16         
    17         alert(num > ref);//return true;
    18         
    19         alert(o1 > o1 || o1 < o2 || o1 == o2);//always return false;
    20         </script>
    21         </head>
    22         <body> 
    23         </body>
    24 </html>

              

  • 相关阅读:
    CentOS搭建nginx环境
    Gitment评论插件的使用
    GitPages部署自己的网站
    ubuntu防火墙规则之ufw
    鸟哥的Linux私房菜笔记第六章(二)
    一次使用InfluxDB数据库的总结
    网站实现markdown功能
    鸟哥的Linux私房菜笔记第六章(一)
    Flutter学习笔记(21)--TextField文本框组件和Card卡片组件
    Flutter学习笔记(20)--FloatingActionButton、PopupMenuButton、SimpleDialog、AlertDialog、SnackBar
  • 原文地址:https://www.cnblogs.com/oxf5deb3/p/3704067.html
Copyright © 2011-2022 走看看