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 99

    TypeScript – Returning a Function

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    Functions may also return value along with control, back to the caller. Such functions are called returning functions. Syntax function function_name():return_type { //statements return value; } The return_type can be…

    Continue ReadingTypeScript – Returning a Function

    TypeScript – Calling a Function

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    A function must be called so as to execute it. This process is termed function invocation. Syntax Function_name() The following example illustrates how a function can be invoked − Example…

    Continue ReadingTypeScript – Calling a Function

    TypeScript – Defining a Function

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    A function definition specifies what and how a specific task would be done. Before using a function, it must be defined. Functions are defined using the function keyword. The syntax for defining…

    Continue ReadingTypeScript – Defining a Function

    TypeScript – Functions

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:2 Comments

    Functions are the building blocks of readable, maintainable, and reusable code. A function is a set of statements to perform a specific task. Functions organize the program into logical blocks…

    Continue ReadingTypeScript – Functions

    TypeScript – do…while loop

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    The do…while loop is similar to the while loop except that the do...while loop doesn’t evaluate the condition for the first time the loop executes. However, the condition is evaluated…

    Continue ReadingTypeScript – do…while loop

    TypeScript – While Loop

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    The while loop executes the instructions each time the condition specified evaluates to true. In other words, the loop evaluates the condition before the block of code is executed. Syntax while(condition) {…

    Continue ReadingTypeScript – While Loop

    TypeScript – For Loop

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

    The for loop executes the code block a specified number of times. It can be used to iterate over a fixed set of values, such as an array. The syntax of the for loop…

    Continue ReadingTypeScript – For Loop

    TypeScript – Loops

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    In this topic, we will discuss Loops in Typescript. You may encounter situations, when a block of code needs to be executed several number of times. In general, statements are…

    Continue ReadingTypeScript – Loops

    TypeScript – Switch…case Statement

    • Post author:K Z
    • Post published:September 29, 2021
    • Post category:TypeScript
    • Post comments:2 Comments

    The switch statement evaluates an expression, matches the expression’s value to a case clause, and executes statements associated with that case. Syntax switch(variable_expression) { case constant_expr1: { //statements; break; } case constant_expr2:…

    Continue ReadingTypeScript – Switch…case Statement

    TypeScript – Nested if statement

    • Post author:K Z
    • Post published:September 29, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    In this topic, we will discuss the Nested if statement in Typescript. The else…if ladder is useful to test multiple conditions. Its syntax is given below − Syntax if (boolean_expression1) { //statements…

    Continue ReadingTypeScript – Nested if statement
    • Go to the previous page
    • 1
    • …
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • …
    • 183
    • Go to the next page
    Copyright - OceanWP Theme by OceanWP