Advertisement
GamerBhai02

Program 11 Array to String

Dec 5th, 2024 (edited)
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.30 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.     <h2>Javascript Arrays</h2>
  5.     <p>The Array.toString()method returns a string with all array values separated by commas:</p>
  6.     <script>
  7.         const fruits=["Banana","Orange","Kiwi","Mango"];
  8.         let text=fruits.toString();
  9.         document.write(text);
  10.     </script>
  11. </body>
  12. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement