- 4
Fill in the blanks to declare a constant num and an arrow function calc. num = 5; const calc = (x, y, z = num) {
YOUR help will be useful show your talent
8 odpowiedzi
+ 14
const
num = 5;
const calc = (x, y, z = num)
=>
{
return x + y + z;
}
Answer is here
+ 5
const
num = 5;
const calc = (x, y, z = num)
=>
{
return x + y + z;
}
Answer is here
+ 3
const
num = 5;
const calc = (x, y, z = num)
=>
{
return x + y + z;
}
+ 2
The answer is const and =>
+ 2
answer
const
=>
+ 1
answer = const
=>
+ 1
const
num = 5;
const calc = (x, y, z = num)
=>
{
return x + y + z;
}
Answer is here
0
const
num = 5;
const calc = (x, y, z = num)
=>
{
return x + y + z;
}