容易搞混的JavaScript方法:typeof和instanceof

來源:互聯網
上載者:User
文章目錄
  • 容易搞混的JavaScript方法:typeof和instanceof
容易搞混的JavaScript方法:typeof和instanceof

2011 年 09 月 28 日 by Ryan | 1 CommentViews: 94 Today Views: 1

我經常被JavaScript中的typeof和instanceof搞混的,所以認真地看了一遍。希望以後不要再忘記了。

Typeof()

1

2

3

4

5

6

7

8

//typeof() 返回6種資料類型 : number、string、boolean、object

//function和undefined。

var a = "string";

typeof(a) // outpout "String"

var fn = function () {}; //output "function"

typeof(fn) //output "function"

Instanceof()

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

//instanceof()返回一個Boolean值。用來檢測6種基本類型之一的object

//是不是某一對象(構造方法)產生的執行個體。用於追溯原型鏈。

//網上找了一個例子

var a = function () {};

var b = function () {};

b.prototype = new a;

var c = new b;

var d = new a;

alert(c instanceof a); //true

alert(d instanceof a); //true

alert(a instanceof Function); //true

alert({} instanceof Function); //false

a.prototype = {}; //改變原型鏈

alert(c instanceof a); //false

alert(d instanceof a); //false

Categories: Javascript | Tags: instanceof, prototype, typeof | Permalink

 

原文地址:http://www.coolicer.com/2011/09/28/javascript-typeof-and-instanceof.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.