zoukankan      html  css  js  c++  java
  • js类型

    1)基本类型
    ---数字,采用IEEE754标准定义的64位浮点格式.
    特殊数值常量:
    Infinity                        无穷大的特殊值
    NaN                                非数字值
    Number.MAX_VALUE                可表示的最大数字
    Number.MIN_VALUE                可表示的最小数字
    Number.NaN                        非数字值
    Number.POSITIVE_INFINITY        正无穷大
    Number.NEGATIVE_INFINITY        负无穷大
    把数字转为字符串6种方式
    var n = 1.23456;
    var n_as_str = n+"";
    String(n);
    n.toString(x);            //x=2,binary; x=8, octonay; x=16,hexadecimal.if empty,decimal
    n.toFixed(x);             //小数点后位数
    n.toExponential(x);        //显示指数形式,x表示小数位
    n.toPrecision(x);        //若n位数>x时显示为指数,x表示数字的精度
    ---字符串
    字符串转为数字
    在数字环境,自动转换为数字,
    var num = "2" * "3"; //num = 6
    var num = str_val - 0;
    var num = Number(str_val); //以10为基数的数字有效,允许开头和结尾的空白
    parseInt(str)
    parseInt(str,radix) //the same with java
    parseFloat(str)
    ---布尔
    显式转换的方法
    var x_as_boolean = Boolean(x);
    var x_as_boolean = !!x;
    ---null
    表示"无值".
    对象转换:布尔环境式时,非空对象为false;字符串环境时"null";数字环境时0;
    ---undefined
    使用未声明的变量时,或使用声明但没有赋值的变量时,或使用不存在的对象属性时,返回
    undefined.
    对象转换:布尔环境式时,非空对象为false;字符串环境时"undefined";数字环境时NaN;
    与null区别:
    null是关键字,undefined不是.(ECMAScript v3定义了undefined的全局变量,初始值是undefined)

    <html>
      <head>
    	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    	<title>null and undefined</title>
      </head>
    
      <body>
    	<p>比较null与undefined</p>
    
    	<script>
    	  var undef; 
    	  document.write("布尔环境: ")
    	  document.write(undef==null);      //true
    	  document.write("<br/>");
    	  document.write("字苻串环境: ")
    	  document.write("".undef);         //undefined
    	  document.write("<br/>");
    	  document.write("数字环境: ")
    	  document.write(1+undef);          //NaN
    	  document.write("<br/>");
    
    	  document.write("undef===null: ")
    	  document.writeln(undef===null);     //false
    	  document.write("<br/>");
    	  document.write("typeof undef: ")
    	  document.writeln(typeof undef);     //undefined
    	</script>
    
      </body>
    </html>

    2)复合类型
    对象:已命名的数据的集合
    对象直接量:由一个列表构成.列表的表式形式,{key:value,*};(key=标识符/字符串,value=常量/表达式)
    对象转换:布尔环境式时,非空对象为true;字符串环境时,toString();数字环境时,valueOf();
    数组
    不直持多维数组,数组元素可以是数组;
    数组元素不必据有相同的类型

    3)特殊对象
    函数
    一般语法,function func_name(args) {func_body;}
    lambda函数,function(args){func_body;}
    构造函数,new Function("args","func_body");

  • 相关阅读:
    Xcode 统计代码行数
    AWS 根用户MFA丢失后如何处理
    istio 基础入门
    AWS 如何挑选合适EC2实例类型
    word去除页眉首页横线
    word 题注 图注 表注 交叉引用 自动编号
    (转)Python基础热图-参数超级详解
    VScode 运行代码显示:Code is already running!
    pyside2安装避坑
    vscode import numpy error:DLL load failed: The specific module could not be found
  • 原文地址:https://www.cnblogs.com/dragon-zhong/p/4657871.html
Copyright © 2011-2022 走看看