如何在JavaScript中使用带参数的typeof?

参数对象是传递给函数的参数。它是所有功能均可访问的变量。假设有两个参数传递给函数,则可以像下面这样访问它们:

arguments[0]
arguments[1]

同样,您可以在JavaScript中使用with类型的with参数。首先,让我们看看如何使用的类型。运算符的类型是一元运算符,位于其单个操作数之前,该运算数可以是任何类型。 

示例

以下代码显示了如何实现运算符类型

<html>
   <body>
      <script>
         var a = 20;
         var b = "String";
         var linebreak = "<br />";

         result = (typeof b == "string" ? "B is String" : "B is Numeric");
         document.write("Result => ");
         document.write(result);
         document.write(linebreak);

         result = (typeof a == "string" ? "A is String" : "A is Numeric");
         document.write("Result => ");
         document.write(result);
         document.write(linebreak);
      </script>
   </body>
</html>

现在让我们看看如何在JavaScript中将typeof与参数一起使用。typeof参数将返回如下对象:

document.write(typeof arguments);

假设您有两个参数,然后使用typeof,则可以像下面这样引用它们,这将返回typeof参数。

document.write(typeof arguments[0]);
document.write(typeof arguments[1]);