0
JavaScript
Fill in the blanks to declare a constant num and an arrow function calc. _____ num = 5; const calc = (x, y, z = num)___ { return x + y + z; }
3 Answers
0
const num = 5;
const calc = (x, y, z = num)
=>
{
return x + y + z;
}
0
const
=>
- 1
const num = 5;
const calc = (x, y, z = num)=>
{
return x + y + z;
}