Easy way to check how many arguments does function expects
function a(x, y, z) {
}
console.log(a.length); //3
function b(x, y) {
}
console.log(b.length); //2
function c(x) {
}
console.log(c.length); //1
Written by Seva Rybakov
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Nodejs
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#