1.

What will be the output of the following code snippet in ES6?

Answer»

What will be the output of the following code SNIPPET in ES6?
CONST func= (
x,
y
) => {
return x + y;
};
func(11,12);
(1)None of the options
(2)Syntax Error
(3)23
(4)Logical Error

Answer:-(3)23



Discussion

No Comment Found