Utilisez la méthode String() en JavaScript pour convertir en chaîne. Vous pouvez essayer d'exécuter la commande suivante pour savoir comment convertir [ ] en chaîne en JavaScript.
Démo en direct
<!DOCTYPE html> <html> <body> <p>Convert [] to String</p> <script> var myVal = []; document.write("String: " + String(myVal)); </script> </body> </html>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!