Skip to content

Instantly share code, notes, and snippets.

@pablotolentino
Last active June 29, 2021 14:01
Show Gist options
  • Save pablotolentino/63aac7dde5d3d6d2f51635befa215ab1 to your computer and use it in GitHub Desktop.
Save pablotolentino/63aac7dde5d3d6d2f51635befa215ab1 to your computer and use it in GitHub Desktop.
public static convertirAEntero(texto): number {
if (texto === null) {
return 0;
}
if (texto.length == 0) {
return 0;
}
if (isNaN(texto)) {
return 0;
}
return parseInt(texto);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment