Prototip - Aralığı İfade Etme
Prototip Aralıkları, bir değerler aralığını temsil eder. Bir aralık elde etmenin tercih edilen yolu,$R yardımcı program işlevi.
Aşağıdaki gibi basit bir sözdizimi kullanarak çok sayıda değer oluşturabilirsiniz -
$R(1, 10).inspect();
$R('a', 'e').inspect();
Bu, aşağıdaki sonucu verecektir -
['1, 2, 3, 4, 5, 6, 7, 8, 9, 10']
['a', 'b', 'c', 'd', 'e']
İnclude () Yöntemi
Bu yöntem, değerin aralığa dahil edilip edilmediğini belirler -
Sözdizimi
Range.include(value);
Geri dönüş değeri
Değer dahil edilirse, aksi takdirde yanlış bir gerçek değer döndürür.
Misal
<html>
<head>
<title>Prototype examples</title>
<script type = "text/javascript" src = "/javascript/prototype.js"></script>
<script>
function showResult() {
alert ( "Test 1 : " + $R(1, 10).include(5));
// Returns true
alert ( "Test 2 : " + $R('a', 'h').include('x'));
// Returns flase
}
</script>
</head>
<body>
<p>Click the button to see the result.</p>
<br />
<br />
<input type = "button" value = "Result" onclick = "showResult();"/>
</body>
</html>