What is the difference between angular JS, Type script, JavaScript | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the difference between angular JS, Type script, JavaScript

6th Dec 2016, 7:43 AM
S.Laxman_vijay
S.Laxman_vijay - avatar
2 Answers
0
typescript is a language, JavaScript is also a language based on typescript, covering some part of it's functionality. consider js is a sub-set of ts. angularJS is a framework for js, created by Google.
6th Dec 2016, 8:51 AM
Demeth
Demeth - avatar
0
JavaScript: basic programming language (like phyton) Typescript: precompiler that allows you to use programming constructs that are (not yet) available in JavaScript (ecma5) or shorter in syntax (no brackets). typescript code is compiled to plain JavaScript code before it can be used by most of the browsers. AngularJs: single page application (SPA) framework based on JavaScript, that allows you to build fancy model view controller (MVC) patterns. it is seen as the next generation after jQuery. it's successor, Angular2 is written in typescript.
6th Dec 2016, 9:12 PM
codinator
codinator - avatar