Để tạo chuỗi giá trị trống trong JavaScript, bạn có thể thử chạy mã sau -
Ví dụ
<html> <head> <script> var val; val = ""; document.write("Value: "+val); document.write("<br>Type: "+typeof val); </script> </head> <body> </body> </html>
Để tạo chuỗi giá trị trống trong JavaScript, bạn có thể thử chạy mã sau -
<html> <head> <script> var val; val = ""; document.write("Value: "+val); document.write("<br>Type: "+typeof val); </script> </head> <body> </body> </html>