Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Objects</h1>
<h2>The tostring() Method</h2>
<p>The result of using toString() on an array:</p>
<p id="demo"></p>
<script>
const fruits = ["Banana", "Orange", "Apple", "Mango"];
const myArray = fruits.toString();
document.getElementById("demo").innerHTML = myArray;
</script>
</body>
</html>