Hi Friends 👋,
Welcome To Infinitbility! ❤️
To convert boolean to string in react native, just use the toString()
method to convert boolean to string.
Like the following example, we can convert boolean variable data to a string.
1const x = true;2console.log(x.toString());3// Output4// "true"
Today, I’m going to show you How do i convert boolean to string react native, as above mentioned here, I’m going to use the toString()
method to convert boolean data to a string.
Let’s start today’s tutorial how do you convert boolean to string react native?
In this example, we will do
- Create a sample boolean variable.
- Use
toString()
method - Print the Output on the screen
1import React, { useState, useEffect } from 'react';2import { Text, View, StyleSheet } from 'react-native';34export default function App() {5 const [str, setStr] = useState("");67 useEffect(() => {8 let strBool = true;9 let result = strBool.toString();10 console.log(result);11 setStr(result);12 }, []);1314 return (15 <View style={styles.container}>16 <Text>{str} - {typeof str}</Text>17 </View>18 );19}2021const styles = StyleSheet.create({22 container: {23 flex: 1,24 justifyContent: 'center',25 backgroundColor: '#ecf0f1',26 padding: 8,27 },28 paragraph: {29 margin: 24,30 fontSize: 18,31 fontWeight: 'bold',32 textAlign: 'center',33 },34});
As above mentioned, we are taken the example of a boolean variable, converted it into a string, and printed it on the screen.
Let’s check the output.

I hope it’s help you, All the best 👍.
Follow me on Twitter
Join our email list and get notified about new content
No worries, I respect your privacy and I will never abuse your email.
Every week, on Tuesday, you will receive a list of free tutorials I made during the week (I write one every day) and news on other training products I create.