9 lines
119 B
Plaintext
9 lines
119 B
Plaintext
function test_param_zero(x) {
|
|
return x == 0
|
|
}
|
|
|
|
function test_param_pair(a, b) {
|
|
return (a == 0) && (b == 0)
|
|
}
|
|
|