zoukankan      html  css  js  c++  java
  • 函数也是对象

    function bark() {
      console.log("Woof!");
    }
    
    bark.animal = "dog";
    • A: Nothing, this is totally fine!

    • B: SyntaxError. You cannot add properties to a function this way.

    • C: undefined

    • D: ReferenceError

    这在JavaScript中是可能的,因为函数也是对象!(原始类型之外的所有东西都是对象)

    函数是一种特殊类型的对象。您自己编写的代码并不是实际的函数。 该函数是具有属性的对象,此属性是可调用的。

    答案: A

    练习:

     1 <!DOCTYPE html>
     2 <html lang="en">
     3 
     4 <head>
     5   <meta charset="UTF-8">
     6   <meta name="viewport" content="width=device-width, initial-scale=1.0">
     7   <meta http-equiv="X-UA-Compatible" content="ie=edge">
     8   <title></title>
     9 </head>
    10 
    11 <body>
    12 </body>
    13 
    14 </html>
    15 <script type="text/javascript">
    16 function bark() {
    17   console.log("Woof!");
    18 }
    19 
    20 bark.animal = "dog";
    21 console.log(bark.animal)
    22 console.log(bark())
    23 </script>
    View Code
  • 相关阅读:
    通过 Web 服务共享 Windows 剪贴板
    bzoj 1007[HNOI2008]水平可见直线 半平面交
    c#读写INI
    c#获得伪静态页码
    c#判断部分
    c#网络通信
    C# 转换函数
    c#文件操作
    c#进制转换
    服务器端异步接受SOKCET请求
  • 原文地址:https://www.cnblogs.com/wang715100018066/p/11088971.html
Copyright © 2011-2022 走看看