calc , problem 1

PHOTO EMBED

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

Saved by @latifa_amaireh

function sum(a, b) {
  let z = a + b; 
  
  return [z, 'The sum of ' + a +' and ' + b + ' is ' + z + '.'];
}
testSum(4, 7);
content_copyCOPY