Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What will be the output of the following code snippet in ES6? const func= ( x, y ) => { return x + y; }; func(11,12);
Home
ECMAScript
What will be the output of the following code snippet in ES6? const func= ( x, y ) => { return x +...
asked
Jan 21, 2020
in
ECMAScript
by
GeorgeBell
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
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 21, 2020
by
GeorgeBell
23
...