Javascript Convert Object to String Example

Apr 13, 2021 . Admin

Hello Friends,

Now let's see example of how to convert object to string in javascript. Here you will learn how to use javascript object to string conversion. We will use how to convert object to string in javascript. This is a short guide on convert object to string. Let's get started with how to convert object to string in javascript.

Here i will give you many example how you can convert object to string in javascript.

Example: 1
<!DOCTYPE html>
<html>
	<head>
	   <title>Javascript - How to convert object to string?-MyWebtuts.com</title>
	</head>
	<body>

		<script>

			const person = {
    			name: 'Laravel',
    			year: 10
			}

			const result1 = String(person);
			const result2 = String(person['name']);

			console.log(result1);
			console.log(result2);

			console.log(typeof result1);
			
		</script>

	</body>
</html>
Output: 1
	[object Object]
	Laravel
	string
Example: 2
<!DOCTYPE html>
<html>
	<head>
	   <title>Javascript - How to convert object to string?-MyWebtuts.com</title>
	</head>
	<body>

		<script>

			const person = {
		    	name: 'PHP',
		    	year: 6
			}
			const result =  JSON.stringify(person);

			console.log(result);
			console.log(typeof result);
			
		</script>

	</body>
</html>
Output: 2
	{"name":"PHP","year":6}
	string

It will help you....

#Javascript