Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
378 views
in Technique[技术] by (71.8m points)

javascript - 检查变量是否为函数类型(Check if a variable is of function type)

Suppose I have any variable, which is defined as follows:

(假设我有任何变量,定义如下:)

var a = function() {/* Statements */};

I want a function which checks if the type of the variable is function-like.

(我想要一个函数来检查变量的类型是否像函数一样。)

ie :

(即:)

function foo(v) {if (v is function type?) {/* do something */}};
foo(a);

How can I check if the variable a is of type Function in the way defined above?

(如何以上面定义的方式检查变量a是否为Function类型?)

  ask by Jesufer Vn translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
if (typeof v === "function") {
    // do something
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...