+ 1
Why Functions of ES6 is so UGLY?? đđ
5 Respostas
+ 2
Once u will complete 10-20 project with es6 it will also be friendly/descent with you.
đđ
You missed the name of your descent one.đ
đ
+ 6
Bcz you r not understanding it in efficient way.
Es6 makes your code efficient less code and more result.
In basic , every thing was visible to u , which make it beutiful for u but it increases the code length.
You should once go through advantages of arrow fxn.
+ 4
I think you just offended Javascript!
+ 3
Functions in ES 6 look normal to me
function (arg1) {
return typeof arg1
}
Do you mean arrow functions (aka inline functions)?
arg1 => typeof arg1
Looks pretty and clean to me.
+ 1
Function (param){
Code
}
Look decent to me. And basic syntax
But in ES6 it looks horrible.