I'm watching a tutorial on TS. A few points the speaker said that I have questions about:
1) Mentioned that with TS you can now use Class Based Objects
, weren't classes always available in JS? Besides not having to deal with prototypes in TS, what is the difference?
2) Used tsc <filename>
and converted the TS file into the corresponding JS file, is this necessary for me to do for every TS file? Or is this just showing me what happens when it is converted?