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
  • 相关阅读:
    清理iOS工程里无用的图片,可瘦身ipa
    NSTimer内存泄漏导致控制器不调用dealloc
    iOS面试题 -总结 ,你的基础扎实吗?
    Xcode找不到模拟器出现"My Mac"
    前端开发
    并发编程&数据库
    数据库
    4.2
    4.5
    4.4
  • 原文地址:https://www.cnblogs.com/wang715100018066/p/11088971.html
Copyright © 2011-2022 走看看