

Discover more from system bashing
from writing bash scripts for computer systems to vocally bashing policies of the political systems, find it all here
Continue reading
Arity of a function
The number of arguments it takes
Yeah that’s it.
Example :
function isPositive (a) {return a > 0} function add (a,b) { return a + b}
arity of **isPositive **is 1 arity of **add **is 2