Typescript PPT- Unit-4 MSD
Typescript PPT- Unit-4 MSD
T
ABOUT TYPESCRIPT
Implementing a JavaScript-based application is
more error-prone as it supports dynamic typing and
supports non-strict mode with global variables.
TypeScript makes such implementations easy, as it
supports static typing and structured code with the
help of modules and object-oriented concepts.
TypeScript enables you to develop a highly
structured, less error-prone JavaScript code using
TypeScript features.
NEED FOR TYPESCRIPT
JavaScript is used for client-side scripting to do
client-side validations, DOM manipulation
and also, for writing complex business logic
that runs at the client-side.
As the complexity of the JavaScript code
increases, it gradually becomes difficult in coding
and maintaining.
This is because of the limitations of the
JavaScript language.
There is no option to change the language for
the client-side scripting as the browser
understands only JavaScript.
The solution is to choose a language that is rich
in features and the code can be converted to
JavaScript.
This process of converting the code written in
one language into another language is called
Transpilation.
TypeScript is one such language where its code
can get transpiled to JavaScript.
PITFALLS OF JAVASCRIPT
console.log(calculateTotalPrice(3, "500"));
code.
Memory efficient as no intermediate object code
from Github.
npm i –g typescript
or
tsc -v
//or
tsc --version
in the application.
DECLARING VARIABLES
Declaration of a variable is used to assign a data
type and an identifier to a variable. Declaration
of variables in TypeScript is like JavaScript
variable declaration.
Below are the three declaration types supported
in TypeScript.
PROBLEM WITH
VAR DECLARATION
In the below code, you will observe a strange
behavior of the variable count. You
can access this variable even outside the loop
although it is defined inside the loop. This is due
to the global scope nature of the var data
type declaration.
Other problems with global scope variable are:
When the var declared variable is defined outside
arrays.
use customerCreditInfo[1].
In a shopping cart application, you can use
tuples to store product details that should
require more than one type of data.
The order of the first set of data entries while
cases:
if you are trying to assign multiple entries in the
first initialization.
if you try to initialize different datatypes directly
to the tuple declared variable.
In order to overcome the above-mentioned
compilation errors, you can use the push()
method.
EXAMPLE:
arrow function.
In a shopping cart application, you can use the
this keyword.
Rewrite the same logic using the arrow
function as below:
In the above code, this.productName is written
function.
If you rewrite the previous code using an optional
parameter, it looks like the below:
An Optional parameter must appear after all the
declarations.
Properties or methods in an interface should not
interface.
FUNCTION TYPES
Interfaces can be used to define the structure of
functions like defining structure of objects.
Once the interface for a function type is declared,
you can declare variables of that type and assign
functions to the variable if the function matches
the signature defined in the interface.
Function type interface is used to enforce the
same number and type of parameters to any
function which is been declared with the function
type interface.
EXTENDING INTERFACES
An interface can be extended from an already
existing one using the extends keyword.
In the code below, extend the productList
interface from both the Category interface and
Product interface.
CLASS TYPES
inside a class.
object.
WHY CLASSES
concept as such.
classes.
In the Mobile Cart application, you can use a class
to define the product and create various objects of
different products. In the below screen, creating
different objects of product and rendering the
details
WHAT IS A CLASS?
Class is a template from which objects can be
created.
It provides behavior and state storage.
the subclass.
modularity.
namespace.
CREATING AND USING
NAMESPACES
In the below example, create a namespace called
Utility and group a function MaxDiscountAllowed
and a nested namespace called payment inside it.
To import the namespace and use it, make use of
the triple slash reference tag.
The file in which the namespace is declared and
the file which uses the namespace to be compiled
together. It is preferable to group the output
together in a single file. You have an option to do
that by using the --outFile keyword.
WHAT IS A MODULE?
unless exported.
module.
EXPORTING FROM A MODULE
The constructs of a module can be exported by
one of the below approaches:
1. Adding an export keyword in front of a function
or a class or an interface
2. Adding an export keyword to a block of
statements
IMPORTING A MODULE
Using the import keyword, you can import a
module within another module or another
TypeScript file. Provide the file name as the
module name while importing.
Once the module is imported, make use of the
command.
MODULE FORMATS AND LOADERS
Module format is the syntax that is used to define
a module in JavaScript.
Modules in TypeScript can be compiled to one of
the module formats given below:
Commonly we compile the modular code in
TypeScript to ES2015 format by using the --
module ES2015 keyword while performing the
compilation.
JavaScript are:
SystemJS module loader for modules in AMD,
format.
On-demand functionalities can be loaded by
Modules, which is known as lazy loading.
By using this feature while executing our
application all the declared modules are not
loaded at that moment, it only loads needed
modules that are needed by the user to render
the initial look of the application on the first
load.
Due to this concept performance of the
application can be enhanced as the initial startup
time of the application automatically decreases.
DEFAULT EXPORTS
Default export is used to export any one of the
constructs such as class, interface, function, and
so on from the current module as a default one.
Default exports are handy in case you need to
export a class that has almost all functionalities
attached, such as javascript library object
jQuery.
Name for the default exported constructs are
optional. You can assign a name to the default
construct while importing it into the other file.
As you cannot have more than one default export
per module.
MODULE VS NAMESPACE
WHY GENERICS?
Generics helps us to avoid writing the same code
again for different data types.
In TypeScript, generics are used along :
keyword.
Consider the below code:
Here you are trying to access the length property