জাভাস্ক্রিপ্টে একটি অ্যারেকে JSON-এ রূপান্তর করতে, কোডটি নিম্নরূপ -
উদাহরণ
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } </style> </head> <body> <h1>Converting an array to JSON</h1> <button class="Btn">CLICK HERE</button> <p class="sample"></p> <h3>Click the above button to convert the array into JSON</h3> <script> let sampleEle = document.querySelector(".sample"); let arr = [22, "A", 1, "HELLO", "J", 9, 22]; sampleEle.innerHTML = arr + "<br>"; document.querySelector(".Btn").addEventListener("click", () => { sampleEle.innerHTML += JSON.stringify(arr); }); </script> </body> </html>
আউটপুট
"এখানে ক্লিক করুন" বোতামে ক্লিক করলে -