Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 164 Bytes

File metadata and controls

12 lines (9 loc) · 164 Bytes

Description:

Return the type of the sum of the two arguments

Solution:

function typeOfSum(a, b) {
  let c = a + b;
  return typeof c;
}