0 votes
in JavaScript by
function multi(a,b) { var ans = a * b; return ans; } var c = _________

multi(15,2);

multi 15, 2;

multi();

1 Answer

0 votes
by
multi(15,2);

Related questions

0 votes
asked Oct 9, 2022 in JavaScript by Robin
0 votes
asked Mar 20, 2021 in JavaScript by sharadyadav1986
...