5.1Object类型

Posted cjl-serics

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.1Object类型相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>New Web Project</title>
        <script>
            /*
             * typeof可能返回下列的某个字符串
             * "undefined"-如果这个值未定义
             * "boolean"-如果这个值是布尔值
             * "string"-如果这个值是字符串
             * "number"-如果这个值是数值
             * "object"-如果这个值是对象/null
             * "function"-如果这个值是函数
             */
            
            var message="some string";
            alert(typeof message);//string
            alert(typeof (message));//string
            alert(typeof 95);//number
        </script>
    </head>
    <body>
    </body>
</html>

 

以上是关于5.1Object类型的主要内容,如果未能解决你的问题,请参考以下文章

5.1Object类型

Java初识方法

引用类型

第5章 引用类型

--引用类型》之Object对象和array对象

Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段