calc , problem 2

PHOTO EMBED

Thu Apr 08 2021 14:25:48 GMT+0000 (Coordinated Universal Time)

Saved by @latifa_amaireh

function multiply(a, b) {
  let z = a * b;

  return [z, 'The product of ' + a +' and ' + b + ' is ' + z + '.'];
}
testMultiply(5,9);
content_copyCOPY