zoukankan      html  css  js  c++  java
  • javascript--js

    1 隐式转换

     

    1.1 == 不同类型会转成数字再进行比较

    // 不是转成字符串
    console.log("10" > 2);
    
    
    console.log("0" == false);
    console.log("1" == true);
    
    // 数字相等
    console.log(0 == '0');
    console.log(0 == false);
    

    Created: 2019-12-10 周二 16:51

    Validate

  • 相关阅读:
    jsp分页原理
    解决PowerDesigner 错误:Invalid repository user or password!
    JSP禁用缓存常用方法
    PowerDesigner 15破解补丁
    PowerDesigner建立与数据库的连接,以便生成数据库和从数据库生成到PD中。[Oracle 10G版]
    二十三、Intent
    axis2+spring集成
    ASP.NET获取MS SQL Server安装实例
    显示非站点目录图片
    行为的抽象即是接口(Interface)
  • 原文地址:https://www.cnblogs.com/heidekeyi/p/12017666.html
Copyright © 2011-2022 走看看