This is an Example of React Native isNaN() to Check Value Is a Number Or Not. In this example we will check input is a number or not. For that, we will use isNaN
.
To check value is a number of not
1 | isNaN(Pass the Value to check); //It will return true if not a number else false |
It can be used in if condition, as it will return the true or false condition to identify the value, is a number or not. So let’s get started.
To Make a React Native App
Getting started with React Native will help you to know more about the way you can make a React Native project. We are going to use react-native init to make our React Native App. Assuming that you have node installed, you can use npm to install the react-native-cli
command line utility. Open the terminal and go to the workspace and run
Open App.js in any code editor and replace the code with the following code.
App.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | /*This is an example of React Native isNaN() to Check Value Is Number Or Not*/ import React, { Component } from 'react'; import { StyleSheet, View, Button, Alert, TextInput } from 'react-native'; export default class App extends Component { constructor() { super(); this.state = { TextInputValue: '', }; } CheckValueIsNumberOrNot = () => { //Handler called on button click if (isNaN(this.state.TextInputValue)) { //if input is not a number then here Alert.alert('It is not a Number'); } else { //if input is number then here Alert.alert('It is a Number'); } }; render() { return ( <View style={styles.MainContainer}> <TextInput placeholder="Enter text" onChangeText={TextInputValue => this.setState({ TextInputValue: TextInputValue }) } style={styles.TextInputStyle} /> <Button title=" Check Value Is Number Or Not " onPress={this.CheckValueIsNumberOrNot} color="#606070" /> </View> ); } } const styles = StyleSheet.create({ MainContainer: { flex: 1, alignItems: 'center', marginTop: 60, }, TextInputStyle: { textAlign: 'center', height: 50, width: '70%', marginBottom: 10, }, }); |
To Run the React Native App
Open the terminal again and jump into your project using.This is how you can check the Input value is a number or not. If you have any doubt or you want to share something about the topic you can comment below or contact us here. There will be more posts coming soon. Stay tuned!
Hope you liked it. 🙂
How useful was this post?
Click on a star to rate us!
Average rating / 5. Vote count:
We are sorry that this post was not useful for you!
Let us improve this post!
Thanks for your feedback!