ES6 and Typescript Tutorial - 1 - Introduction

preview_player
Показать описание

📱 Follow Codevolution

A new tutorial series on ES2015 aka ES6 and Typescript!

ES6 is the 6th edition, officially known as ECMAScript 2015, and was finalised in June 2015. ES6 adds significant new syntax for writing complex applications, including classes and modules, but defines them semantically in the same terms as ECMAScript 5 strict mode. Browser support for ES6 is still incomplete. However, ES6 code can be transpiled into ES5 code, which has more consistent support across browsers.

Typescript is a superset of Javascript that compiles to plain Javascript. It is also the main language used for Angular 2.

ES6 | ES2015 | Typescript | ES6 Tutorial | ES2015 Tutorial | Typescript Tutorial | ES6 Tutorial for Beginners | ES2015 Tutorial for Beginners | Typescript tutorial for Beginners
Рекомендации по теме
Комментарии
Автор

I completed this playlist and giving my review here. As this is the video people see to decide whether playlist is good or not.

I needed to start Angular and was suggested to start with ES and TS as pre-requisites. And I came across this playlist.
The concept have been explained meticulously. Coming with a knowledge of JS, this series helped me understand ES6 and TS with ease. I have seen other tutorials also, but by far I suggest this one to total beginners. Most of the concepts are covered. More knowledge can always be acquired from Documentation. But the way he teaches makes your base of understanding the concepts strong.

I strongly suggest this playlist for the said topics.

I'm moving on to learning Angular from this channel as the teaching has been very helpful to me.

lucifyer
Автор

So glad I discovered you Vishwas! I went through your Angular 5 series, thank you so much!

geodamian
Автор

man, you're genius, you have earned my subscription. Thanks a lot for this amazing tutorial series.

shantanumore
Автор

Wow, dude, all your tutos are so great. Tahnks and go on!!!!

aaronaaronaaron
Автор

really good and clear explanation of ES2015

VamsiKrishna-ythi
Автор

Very nice tutorial about es2015. I do not know why it's so less focused. Strongly recommend it to developers who want to learn es2015!

donaldt
Автор

your videos are amazing. I'm surprised you don't have thousands of subscribers

jaimeg.
Автор

This is really helpful.
Do you have any plans on doing a Typescript + React series?
That would be a dream come true.
Thank you for all you give to us dumm developers out there :)

jpesmar
Автор

Hi Codevolution,
I take the M.E.A.N. stack as basis for my study and though it lacks the "J" of JavaScript and JSON and the "T" of TypeScript, knowledge of both is handy if not essential. Compliments for providing this basis!
I already made a start with the "A" of Angular-2 (now version 4?) and thus your very to the point tutorials.
One question: since everything comes together in the DOM when it goes to web-presentation and -application software (once so hated by Douglas Crockford - his remarks are wise but now outdated) - can you elaborate on this in your style ? (Or refer me to what you did already).
Meanwhile many thanks for inspiring lectures.

bennybrouwer
Автор

Yes yes yes - amazing teacher! How do you do it? And, what happened to your accent? You sound amazing Vishwas. I hope you never leave us.

ventures
Автор

Recommend having "javascript" somewhere in the videos or playlist.
Very good content but very hard to discover for someone looking for javascript tutorial.
ES6 sounds alien to anyone new to javascript itself.

gnanapandiangnanachandran
Автор

Legends are watching another LEGEND in nearly 2022!!
btw kuddos to you Vishwas

mukulchahal
Автор

i want to learn mern stack, how should i proceed with the playlist, what to learn first and in which order is recommended

mickyman
Автор

REALLY AMAZING TUTORIAL, so clear about everything,
i would suggest one thing, you should compile soo many small videos to be one big video, it would be helpfup for viewers,
never the less, i couldn't find a better tutorial...

mastermind
Автор

ES 6 need to compile or not ? It will work on browser directly without any compilation?

kotireddy
Автор

the irony of situation is how unstandardized the naming conventions are for these version "names". ECMA script = ES5, ECMA script 2015 = ES6

hitmanLis
Автор

is this is beginner prerequisite for REACTJS please tell anybody

ashishm
Автор

Do yourself a favor and play this at 1.25x

siya
Автор

Is JavaScript knowledge necessary to learn typescript?

anushareddymalli
Автор

ts code :
function f(val1:number) {
console.log(val1);
}

js code, after compile :
function f(val1) {
console.log(val1);
}

Is there any way to maintain type safe even after convert to js from

karthiknedunchezhiyan