Home > Web Front-end > JS Tutorial > How to determine whether it is a function in javascript

How to determine whether it is a function in javascript

青灯夜游
Release: 2023-01-05 16:09:54
Original
9043 people have browsed it

In JavaScript, you can use typeof and "===" operators to determine whether it is a function. The syntax format is "if (typeof function name === "function") {//It is a function} else { //Not a function}".

How to determine whether it is a function in javascript

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

javascript determines whether it is a function

<script type="text/javascript">
    //判断是否为函数
    try {
        if(typeof FunName === "function") { //是函数    其中 FunName 为函数名称
            alert("is function");
        } else { //不是函数
            alert("not is function");
        }
    } catch(e) {}
</script>
Copy after login

Description:

typeof operator is used to detect the data type of the variable

[Recommended learning: javascript advanced tutorial]

The above is the detailed content of How to determine whether it is a function in javascript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template