in ECMAScript by (5.2k points)
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

1 Answer

0 votes
by (5.2k points)
23

Related questions

0 votes
asked Jan 21, 2020 in ECMAScript by GeorgeBell (5.2k points)
0 votes
asked May 27, 2019 in Data Handling by tempuser (391 points)
0 votes
asked Jun 7, 2019 in Data Handling using R by tempuser (391 points)
...