Quiz Challenges
52
Question 42 of 52
81%
42
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
42
/
52
Next