[フレーム]
Last Updated: February 25, 2016
·
543
· codingfu

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

AltStyle によって変換されたページ (->オリジナル) /