Quiz Challenges
58
Question 48 of 58
83%
48
What will be the output of the following log statements?
const
myFunc
=
(
{
x
,
y
,
z
}
)
=>
{
console
.
log
(
x
,
y
,
z
)
;
}
;
myFunc
(
1
,
2
,
3
)
;
A
undefined undefined undefined
B
1 2 3
Submit Answer
Previous
48
/
58
Next