Click here to Skip to main content
15,867,594 members
Articles / Programming Languages / Typescript

Latest TypeScript Interview Questions for Beginners

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
12 Jan 2016CPOL10 min read 45.3K   5   1
Latest TypeScript Interview Questions for beginners

Without JavaScript, web development can’t be imagined. Though JavaScript has issues, it is universally supported by all browsers. And present time is an era of new client side frameworks or technologies (AngularJs, Gulp, Grunt, Yeoman etc.) for better user experience and web development. TypeScript is another player and is becoming popular as it lets you write JavaScript the way you really want to and addresses JavaScript issues.

Previously, I posted about Grunt and Gulp interview questions and in this post, you will find a list of latest and updated TypeScript interview questions and their answers for freshers as well as experienced users. These interview questions will help you to prepare for the interviews, for quick revision and provide strength to your technical skills.

TypeScript Interview Questions

Q1. What is TypeScript and Why Do We Need It?

Ans. JavaScript is the only client side language universally supported by all browsers. But JavaScript is not the best designed language. It’s not a class-based object-oriented language, doesn’t support class based inheritance, unreliable dynamic typing and lacks in compile time error checking. And TypeScript addresses all these problems. In other words, TypeScript is an attempt to “fix” JavaScript problems.

TypeScript is a free and open source programming language developed and maintained by Microsoft. It is a strict superset of JavaScript, and adds optional static typing and class-based object-oriented programming to the language. TypeScript is quite easy to learn and use for developers familiar with C#, Java and all strong typed languages. At the end of day “TypeScript is a language that generates plain JavaScript files.”

As stated on Typescript official website, “TypeScript lets you write JavaScript the way you really want to. TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. Any browser. Any host. Any OS. Open Source.” Where “typed” means that it considers the types of variables, parameters and functions.

Q2. What are the Benefits of TypeScript?

Ans. TypeScript has following benefits:

  • It helps in code structuring
  • Use class based object oriented programming
  • Impose coding guidelines
  • Offers type checking
  • Compile time error checking
  • Intellisense

Q3. What are Different Components of TypeScript?

Ans. There are mainly 3 components of TypeScript:

  1. Language – The most important part for developers is the new language. The language consists of new syntax, keywords and allows you to write TypeScript.
  2. Compiler – The TypeScript compiler is open source, cross-platform and open specification, and is written in TypeScript. Compiler will compile your TypeScript into JavaScript. And it will also emit error, if any. It can also help in concatenating different files to a single output file and in generating source maps.
  3. Language Service – TypeScript language service which powers the interactive TypeScript experience in Visual Studio, VS Code, Sublime, the TypeScript playground and other editor.

Q4. How Can You Get TypeScript and Install It?

Ans. TypeScript can be installed and managed via npm, the Node.js package manager. To install TypeScript, first ensure the npm is installed properly. And then run the following command to install TypeScript globally on your system.

npm install -g typescript

TypeScript is included in Visual Studio 2013 Update 2 and Visual Studio 2015 by default. TypeScript also provides support for other editors like Visual Studio Code, sublime, Emacs and Vim.

Q5. How Do You Compile TypeScript Files?

Ans. The extension for any TypeScript file is .ts. And any JavaScript file is TypeScript file as it is a superset of JavaScript. So change extension of “.js” to “.ts” file and your TypeScript file is ready. To compile any .ts file into .js, use the following command.

tsc <TypeScript File Name>

For example, to compile “Helloworld.ts”:

tsc helloworld.ts

And the result would be helloworld.js.

Q6. Is It Possible to Combine Multiple .ts Files into a Single .js File?

Ans. Yes, it's possible. While compiling add --outFILE [OutputJSFileName] option.

tsc --outFile comman.js file1.ts file2.ts file3.ts

This will compile all 3 “.ts” file and output into single “comman.js” file. And what will happen if you don’t provide a output file name.

tsc --outFile file1.ts file2.ts file3.ts

In this case, file2.ts and file3.ts will be compiled and the output will be placed in file1.ts. So now your file1.ts contains JavaScript code.

Q7. Is It Possible to Compile .ts Automatically with Real Time Changes in .ts File?

Ans. Yes. Using --watch compiler option, this can be achieved.

JavaScript
tsc --watch file1.ts

This will first compile file1.ts in file.js and watch for the file changes. As soon as there is any change detected, it will compile it again. But you need to ensure that command prompt must not be closed, used with --watch option.

TypeScript compiler watch option

Q8. Does TypeScript Support All Object Oriented Principles?

Ans. The answer is YES. There are 4 main principles to Object Oriented Programming: Encapsulation, Inheritance, Abstraction, and Polymorphism. TypeScript can implement all four of them with its smaller and cleaner syntax. Read Write Object-Oriented JavaScript with TypeScript.

Q9. Which Object Oriented Terms are Supported by TypeScript?

Ans. TypeScript supports the following object oriented terms:

  • Modules
  • Classes
  • Interfaces
  • Data Types
  • Member functions

Q10. Which are the Different Data Types Supported by TypeScript?

Ans. TypeScript supports the following data types:

  • Boolean var bValue: boolean = false;
  • Number var age: number = 16;
  • String var name: string = "jon";
  • Array var list:number[] = [1, 2, 3];
  • Enum
    JavaScript
    enum Color {Red, Green, Blue};
    var c: Color = Color.Green;
  • Any var unknownType: any = 4;
  • Void
    JavaScript
    function NoReturnType(): void {
    }

Q11. How TypeScript is Optionally Statically Typed Language?

Ans. TypeScript is referred as optionally statically typed, which means you can ask the compiler to ignore the type of a variable. Using any data type, we can assign any type of value to the variable. TypeScript will not give any error checking during compilation.

JavaScript
var unknownType: any = 4;
unknownType = "Okay, I am a string";
unknownType = false; // A boolean.

Q12. What are Modules in TypeScript?

Ans. Modules are the way to organize code in TypeScript. Modules don’t have any features, but can contain classes and interfaces. It is same like namespace in C#.

Q13. What are Classes in TypeScript?

Ans. The concept of classes is very similar to .NET/Java. A Class can have constructor, member variables, properties and methods. TypeScript also allows access modifiers “private” and “public” for member variables and functions.

Q14. How Do You Implement Inheritance in TypeScript?

Ans. Using extends keyword, we can implement inheritance.

JavaScript
class Animal {
    public domestic:boolean;
    constructor(public name: string) { }
}

class Cat extends Animal {
    constructor(name: string, domestic: boolean) 
    { 
      super(name); 
      this.domestic = true;
    }
}

class Tiger extends Animal {
    constructor(name: string, domestic: boolean) 
    { 
      super(name); 
      this.domestic = false;
    }
}

Q15. How to Call Base Class Constructor from Child Class in TypeScript?

Ans. Using super(), we can call base class constructor, as seen in the above code.

Q16. What is the Default Access Modifier for Members of a Class in TypeScript?

Ans. In TypeScript, each member of class is public by default.

Q17. How Can You Allow Classes Defined in a Module to be Accessible Outside of the Module?

Ans. Classed define in a module are available within the module. Outside the module, you can’t access them.

JavaScript
module Vehicle {
    class Car {
        constructor (
            public make: string, 
            public model: string) { }
    }
    var audiCar = new Car("Audi", "Q7");
}
// This won't work
var fordCar = Vehicle.Car("Ford", "Figo");

As per above code, fordCar variable will give us compile time error. To make classes accessible outside module, use export keyword for classes.

JavaScript
module Vehicle {
    export class Car {
        constructor (
            public make: string, 
            public model: string) { }
    }
    var audiCar = new Car("Audi", "Q7");
}
// This works now
var fordCar = Vehicle.Car("Ford", "Figo");

Q18. How Does TypeScript Support Optional Parameters in Function as in JavaScript Every Parameter is Optional for a Function?

Ans. In JavaScript, every parameter is considered optional. If no value is supplied, then it is treated as undefined. So while writing functions in TypeScript, we can make a parameter optional using the ? after the parameter name.

JavaScript
function Demo(arg1: number, arg2? :number) {
}

So, arg1 is always required and arg2 is an optional parameter. Remember, optional parameters must follow required parameters. If we want to make arg1 optional, instead of arg2, then we need to change the order and arg1 must be put after arg2.

JavaScript
function Demo(arg2: number, arg1? :number) {
}

Similar to optional parameters, default parameters are also supported.

JavaScript
function Demo(arg1: number, arg2 = 4) {
}

Q19. Does TypeScript Support Function Overloading as JavaScript Doesn’t Support Function Overloading?

Ans. Yes, TypeScript does support function overloading. But the implementation is odd. When you overload in TypeScript, you only have one implementation with multiple signatures.

JavaScript
class Customer {
    name: string;
    Id: number;
	
    add(Id: number);
    add(name:string);
    add(value: any) {
    if (value && typeof value == "number") {
        //Do something
    }
    if (value && typeof value == "string") {
        //Do Something
    }
   }
}

The first signature has one parameter of type number whereas the second signature has a parameter of type string. The third function contains the actual implementation and has a parameter of type any. The any data type can take any type of data. The implementation then checks for the type of the supplied parameter and executes a different piece of code based on supplier parameter type.

OR You can also use union type introduced in TypeScript 1.4. Union types let you represent a value which is one of multiple types.

JavaScript
add(a:string|number) {
   //do something
}

Using union type, you can typically remove the need for an overload.

Q20. Is It Possible to Debug Any TypeScript File?

Ans. Yes, it is possible. To debug it, you need .js source map file. If you are new to source map, read more here. So compile the .ts file with the --sourcemap flag to generate a source map file.

tsc -sourcemap file1.ts

This will create file1.js and file1.js.map. And last line of file1.js would be reference of source map file.

//# sourceMappingURL=file1.js.map

Q21. What is TypeScript Definition Manager and Why Do You Need It?

Ans. TypeScript Definition Manager (TSD) is a package manager to search and install TypeScript definition files directly from the community driven DefinitelyTyped repository. Let’s see with an example.

Suppose, you want to use some jQuery code in your .ts file.

$(document).ready(function() { //Your jQuery code });

And now when you try to compile it using tsc, you will get compile time error Cannot find name “$”. That’s because TypeScript can’t understand what does “$” means. So somehow we need to inform TypeScript compiler that it belongs to jQuery. That’s where TSD comes into play. You can download jQuery Type Definition file and include it in your .ts file. First, install TSD.

npm install tsd -g 

In your typescript directory, create a new typescript project by running:

tsd init

Then install the definition file for jquery.

tsd query jquery --action install

This will download and create a new directory containing your jquery definition file. The definition file ends with “.d.ts”. So now include it by updating your typescript file to point to the jquery definition.

JavaScript
/// <reference path="typings/jquery/jquery.d.ts" />
$(document).ready(function() { //To Do
});

Now try to compile again and this time, js will be generated without any error.

So TSD will help you to get type definition file for required framework. If you wish to use angular, then download angular type definition file. You can find the complete list here.

Q22. What is TypeScript Declare Keyword?

Ans. It’s quite possible that JavaScript libraries/frameworks don’t have TypeScript definition files and yet you want to use them without any errors. Te solution is to use the declare keyword. The declare keyword is used for ambient declarations where you want to define a variable that may not have originated from a TypeScript file.

JavaScript
declare var unKnownLibrary;

TypeScript runtime will assign unKnownLibrary variable any type. You won’t get Intellisense in design time but you will be able to use the library in your code.

Q23. How to Generate TypeScript Definition File from Any .ts File?

Ans. You can generate TypeScript definition file from any .ts file via tsc compiler. Generating a TypeScript definition will make your TypeScript file reusable.

tsc --declaration file1.ts

Q24. What is tsconfig.json File?

Ans. The presence of a tsconfig.json file in a directory indicates that the directory is the root of a TypeScript project. The tsconfig.json file specifies the root files and the compiler options required to compile the project. And using this file, we can streamline building TypeScript project. Below is a sample tsconfig.json file.

JavaScript
{
   "compilerOptions": {
      "removeComments": true,
      "sourceMap": true
   },
   "files": [
      "main.ts",
      "othermodule.ts"
    ]
}

Within files section, define all the .ts files in the project. And when you invoke tsc without any other arguments with the above file in the current directory, it will compile all the files with the given compiler option settings.

Q25. What are the Disadvantages of TypeScript?

Ans. Well, TypeScript is great but there are some disadvantages as well.

  • TypeScript is just another way to write JavaScript. It doesn’t fix the problems of JavaScript. It just creates an illusion that it does.
  • One more tool to learn.
  • TypeScript has dependency on type definition files, if you wish to use any existing JavaScript libraries.
  • Quality of type definition files is a concern as how can you be sure the definitions are correct?
  • Frequent releases of new versions JavaScript library is also a pain area. Because if their type definition files are not updated then you can’t use them instantly.
  • In order to run the application in the browser, a compile step is required to transform TypeScript into JavaScript.
  • Web developers are using JavaScript from decades and TypeScript doesn’t bring anything new.
  • To use any third party library, definition file is you need. And not all the third party library have definition file available.

That’s all, folks. If you have something to add in this list, please mention in the comments section. Meanwhile, share this in your network and spread this to help others.

The post Latest TypeScript Interview Questions for beginners appeared first on Talking Dotnet.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India
I am an experienced Software Developer with 11+ years of hands-on experience working with Microsoft.NET technology (ASP.NET, ASP.NET Core, C#, SQL Server, Angular).

Visit Talking Dotnet
For ASP.NET Core, read ASP.NET Core Articles

Comments and Discussions

 
GeneralMy vote of 5 Pin
PVX00714-Jan-16 14:50
PVX00714-Jan-16 14:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.