Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để làm việc với Structs trong JavaScript?

Để làm việc với Structs trong JavaScript, bạn có thể thử chạy đoạn mã sau -

Ví dụ

<!DOCTYPE html>
<html>
   <body>
      <script>
         function displayStruct(str) {
            var str = str.split(' ');
            var count = str.length;

            function constructor() {
               for (var i = 0; i < count; i++) {
                  this[str[i]] = arguments[i];
               }
            }
            return constructor;
         }

         var Item = displayStruct("player country");

         var res = new Item('Sachin', 'India');
         alert("Country: "+res.country);
      </script>
   </body>
   
</html>