JavaScript DHTML/Object Oriented/prototype

Материал из Web эксперт
Версия от 07:26, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Add description property to Number objects

  
<html>
<head>
  
  <script type="text/javascript">
     
    Number.prototype.description = null;
    slHighway = new Number(65);
    slHighway.description = "Interstate Highway Speed Limit";
    function tellDifference(num1) {
      document.write(num1.description);
    }
  </script>
</head>
<body>
  <script type="text/javascript">
    tellDifference(slHighway);
  </script>
</body>
</html>