Variables in typescript

Variable is the name of reserved memory location. It means when we declare a variable some part of memory is reserved. Rules for declaring a TypeScript variable: TypeScript variable name must begin with a letter, underscore, or dollar sign. TypeScript variable names are case sensitive. TypeScript reserved keywords like abstract, boolean etc can’t be used … Read more

TypeScript Data Types system

When a variable is declared some part of memory is reserved. But how much memory will be reserved. It depends upon the data type of the variable.  i.e. how much memory will be reserved and which type of data can be stored in reserved memory is depends upon data type of the variable. The Type … Read more

Typescript hello world

Let us start TypeScript programming with simple “Hello World!” example. Create and save the file with .ts extension. In first line we declare a variable of string type. In second line we display the variable’s value at the terminal window. TypeScript Hello World: var message:string = “Hello World!” ; console.log(message); As we discussed in earlier … Read more

Difference between var and let

var keyword: The var statement is used to declare a variable. We can optionally initialize the value of that variable. Example: var num =10; let keyword: The let statement is used to declare a local variable in a block scope. It is similar to var, in that we can optionally initialize the variable. Example: let … Read more

Differences Between JavaScript And TypeScript

JavaScript: JavaScript is the most popular programming language. It is lightweight and commonly used to create interactive and dynamic web pages. It is developed by Netscape in 1995 and named as LiveScript which is later renamed to JavaScript. Read more on JavaScript. TypeScript: TypeScript: TypeScript is a superset of JavaScript which primarily provides optional static … Read more

Android architecture

Android is an operating system developed by Google. It is a modified version of Linux kernel and other open-source software. Today android used in many electronic devices like touchscreen mobile, tablets, Android TV, Android Auto for cars, and Android watches, each with a specialized user interface. Android is also used on the game, digital cameras … Read more

Android history and versions

Android: Android is an operating system developed by Google. It is modified version of Linux kernel and other open source software. Today android used in many electronic devices like touchscreen mobile, tablets, android TV, Android Auto for cars, and Android watches, each with a specialized user interface. Android are also used on game, digital cameras … Read more

Android features

Android: Android is an operating system developed by Google. It is modified version of Linux kernel and other open source software. Today android used in many electronic devices like touchscreen mobile, tablets, android TV, Android Auto for cars, and Android watches, each with a specialized user interface. Android are also used on game, digital cameras … Read more

Android introduction overview

Introduction to Android: Android is an operating system developed by Google. It is modified version of Linux kernel and other open source software. Today android used in many electronic devices like touchscreen mobile, tablets, android TV, Android Auto for cars, and Android watches, each with a specialized user interface. Android are also used on game, … Read more

Bootstrap 4 Forms

Form act as a container for form elements. Form controls automatically receive some global styling with Bootstrap. All textual input, textarea, and select elements with class .form-control have a width of 100 Bootstrap 4 Form Layouts • Stacked (full-width) form • Inline form Standard rules for all form layouts: • Wrap labels and form controls … Read more