Learning TypeScript without JavaScript background

I plan to learn TypeScript, I have enough reasons HTML5, CSSmy problem is that I almost never used or studied JavaScripthow bad it is, should I learn JavaScript first, or can I just jump using TypeScript?

+4
source share
1 answer

The closest equivalence that you may be more familiar with is trying to learn C ++ without first knowing C. TypeScript while JavaScript-based and compiled to JavaScript is a different language that emphasizes various aspects of programming than JavaScript .

Of course, a strong background in JavaScript will help you type TypeScript faster, but learning the basics of JavaScript will not bring you much benefit compared to just diving into TypeScript.

+13
source

Source: https://habr.com/ru/post/1529030/


All Articles