Quiz Challenges
100
Question 86 of 100
86%
86
What will be the output of the following log statements?
Copy
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
86
/
100
Next