How to check if a variable is of function type in Node.js

1 Answer

0 votes
function isfunctiontype(variable) {
    return variable instanceof Function
}

const b = true;
console.log(isfunctiontype(b));

const a = function() {
    return 738
};
console.log(isfunctiontype(a));




/*
run:

false
true

*/

 



answered Jan 27, 2022 by avibootz

Related questions

1 answer 113 views
113 views asked Feb 4, 2022 by avibootz
1 answer 132 views
1 answer 107 views
2 answers 136 views
2 answers 180 views
1 answer 101 views
1 answer 151 views
...