After running multiple tests, I have not been able to identify any noticeable distinctions.
const fruits = ["Banana", "Orange", "Apple", "Mango"];
document.getElementById("demo").innerHTML = fruits.toString();
Along with
const fruits = ["Banana", "Orange", "Apple", "Mango"];
document.getElementById("demo").innerHTML = fruits;
Yet, the outcome remains consistent, providing me with the same results.