Skip to content
Adglob Infosystem Pvt Ltd
  • About Us
  • B2B and B2C Database
  • Bulk Email Solution
  • Contact Us
  • Corporate Email Service
  • Database Portfolio
  • Database Process Flow
  • Database Services
  • FAQs
  • Lead Generation
  • Managed Email Campaign Solution
  • Our Clients
  • Privacy Policy
  • Product Blog
  • Request Sample for Free Database
  • Terms & Conditions
  • Web Scrapping
  • Author: K Z

    This author has written 1821 articles
    1. Home>
    2. K Z>
    3. Page 93

    TypeScript – Namespaces

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    A namespaces is a way to logically group related code. This is inbuilt into TypeScript unlike in JavaScript where variables declarations go into a global scope and if multiple JavaScript…

    Continue ReadingTypeScript – Namespaces

    TypeScript – Objects

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    An object is an instance that contains a set of key-value pairs. The values can be scalar values or functions or even array of other objects. The syntax is given below −…

    Continue ReadingTypeScript – Objects

    TypeScript – Classes

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:1 Comment

    TypeScript is object-oriented JavaScript. TypeScript supports object-oriented programming features like classes, interfaces, etc. A class in terms of OOP is a blueprint for creating objects. A class encapsulates data for…

    Continue ReadingTypeScript – Classes

    TypeScript – Interfaces

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    An interfaces is a syntactical contract that an entity should conform to. In other words, an interface defines the syntax that any entity must adhere to. Interfaces define properties, methods,…

    Continue ReadingTypeScript – Interfaces

    TypeScript – Union

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:1 Comment

    TypeScript 1.4 gives programs the ability to combine one or two types. The Unions types are a powerful way to express a value that can be one of the several…

    Continue ReadingTypeScript – Union

    TypeScript – Tuples

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    At times, there might be a need to store a collection of values of varied types. Arrays will not serve this purpose. TypeScript gives us a data type called tuples…

    Continue ReadingTypeScript – Tuples

    TypeScript – Function Returning an Array

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    In this topic, we will discuss returning an array function in Typescript Allows a function to return an array. Example function disp():string[] { return new Array("zafrul","subrat","Jay","ajit") } var nums:string[] =…

    Continue ReadingTypeScript – Function Returning an Array

    TypeScript – Passing Arrays to Functions

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:1 Comment

    You can pass to the function a pointer to an array by specifying the array's name without an index. Example var names:string[] = new Array("zafrul","subrat","Jay","ajit") function disp(arr_names:string[]) { for(var i…

    Continue ReadingTypeScript – Passing Arrays to Functions

    TypeScript – Multidimensional Arrays

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:2 Comments

    An array element can reference another array for its value. Such arrays are called multidimensional arrays. TypeScript supports the concept of multi-dimensional arrays. The simplest form of a multi-dimensional array…

    Continue ReadingTypeScript – Multidimensional Arrays

    TypeScript – Array unshift()

    • Post author:K Z
    • Post published:October 1, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    unshift() method adds one or more elements to the beginning of an array and returns the new length of the array. Syntax array.unshift( element1, ..., elementN ); Parameter Details element1,…

    Continue ReadingTypeScript – Array unshift()
    • Go to the previous page
    • 1
    • …
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • …
    • 183
    • Go to the next page
    Copyright - OceanWP Theme by OceanWP