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

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

Use immutable data structures to avoid unnecessary change detection In Angular

Delete Empty Rows or Null Rows in Datatable in C#

How To Setup Angular 10 Environment On Windows

Content Negotiation in Web API with example

Map Operator in RxJs

How to Create Custom DialogBox using JQuery

HTTP and grPC Communication protocols used in Microservices

Angular Code Optimization Techniques and Methods