ES6 too hard ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

ES6 too hard ?

Am i the only one finding ES6 lessons in Sololearn too much difficult ?? Every lesson here are usually smooth, the difficulty only appear progressively, but regarding ES6 no matter how many times I read it I don’t understand any thing. If a lot of people feel the same, maybe the lesson should be made a different way Edit : As Saha said, I’m not hating ES6, I’m saying the Sololearn lesson needs to be improved

27th Nov 2018, 10:06 AM
Andrea Vinci
Andrea Vinci - avatar
12 Answers
+ 7
27th Nov 2018, 1:12 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 4
D'lite , I think the OP is talking about the Sololearn lessons, and not the features of ES6. I guess in order to discuss the improvements, the lesson compares some advanced tricks between ES6 and old syntaxes. I suppose those who are not familiar with them may find it difficult to follow.
27th Nov 2018, 10:58 AM
Kishalaya Saha
Kishalaya Saha - avatar
+ 4
"no matter how many times I read it I don't understand any thing" Maybe you should stop reading and start thinking and practicing until you get it. When I finished sololearn's javascript course, I didn't understand even a bit of that image slider code Sololearn teaches, but in time, you get it and don't even realise you did. Just keep doing what you can and always consult forums for help.
28th Nov 2018, 5:35 AM
Mao
Mao - avatar
+ 3
Andrea Vinci it seems you like hard stuff. ES6 was made to simplify ES5. Think about it, instead of writing: function SayHi(name){ alert(name); } You could write SayHi = name => { alert(name); } Or instead of arr = [2, 5, 6] var a = arr[0] var b = arr[1] You could use arr = [2, 5, 6]; let [a, b] = arr; I think you give ES6 a chance, you'll be surprised at how much you can do with little amount of code.
27th Nov 2018, 10:30 AM
Dlite
Dlite - avatar
+ 2
Hey, I would recommend you took a look at a book series called 'You don't know JS' ( https://github.com/getify/You-Dont-Know-JS ). It is absolutely a life saver, especially when transffering from other languages to Javascript ES6. It is also extremely helpful for beginners too, because it gives you a solid basis on upon you can learn and especially understand javascript.
27th Nov 2018, 2:39 PM
eRosz
eRosz - avatar
+ 1
No if you know the Basic fundamentals of JavaScript then there is nothing Much in Ecma Script Basically ECMA script is just some modificafion In JavaScript 😊
1st Dec 2018, 9:26 PM
Zafar Kamal
Zafar Kamal - avatar
0
I think you need to learn more about js in site learn.js.ru there isn't a lot of information about poor js ,this is the reason of your Questions( esma script to ease!!)
27th Nov 2018, 4:44 PM
Владислав Шевченко
Владислав Шевченко - avatar
0
yes!!😩
2nd Dec 2018, 4:06 AM
Elijah Limas
Elijah Limas - avatar
0
Es6 is very difficult to learn.cant understand anything.
2nd Dec 2018, 6:59 AM
Pathmini R
Pathmini R - avatar
0
I agree.... It's tough.....
9th Dec 2018, 2:57 PM
Bradley Ngubane
Bradley Ngubane - avatar
0
Gotta agree that the way they did the lessons could be improved, it's not the concepts, it's the way they teach them, I have to look at it for a while, understand what I can and rewrite an easier explanation of how this works in order to fully understand it.
27th Oct 2020, 5:43 PM
Karak10
Karak10 - avatar