Create function to convert from string to Integer using javascript

Create a function to convert a string to integer using JavaScript.

Javascript
function parseStringToInteger(inputValue: string): Number {
  let value: number;

  if (inputValue === '0' || Number(inputValue) === 0) {
    value = 0;
  } else if (inputValue === '') {
    value = null;
  } else {
    value = Number(inputValue);
  }

  return value;
}

How to use the above function to get the expected result : 

Javascript
const value = parseStringToInteger("25");
console.log(value);

Output : 25

Comments

Popular posts from this blog

Send API POST Request in MS SQL Server

Tightly Coupled and Loosely Coupled in .NET Core with example

Configure the API gateway in Microservices Architecture with example in .NET Core

Domain Driven Design (DDD) in .NET Core

Angular CLI Commands - Cheat Sheet

Difference of High-Level Design (HLD) and Low-Level Design (LLD)

Clean Architecture in a C#

Implementing DIP (Dependency Inversion Principle) in .NET Core project

RxJs Operators in Angular

Aggregation and Association and Composition and Its differences with examples