प्रोटोटाइप - एक्सप्रेसिंग रेंज
प्रोटोटाइप रंग मूल्यों के अंतराल का प्रतिनिधित्व करते हैं। सीमा प्राप्त करने का पसंदीदा तरीका है का उपयोग करना$R उपयोगिता समारोह।
आप एक सरल वाक्यविन्यास का उपयोग करके मानों की एक बड़ी श्रृंखला बना सकते हैं -
$R(1, 10).inspect();
$R('a', 'e').inspect();
यह निम्नलिखित परिणाम का उत्पादन करेगा -
['1, 2, 3, 4, 5, 6, 7, 8, 9, 10']
['a', 'b', 'c', 'd', 'e']
शामिल () विधि
यह विधि निर्धारित करती है कि मूल्य सीमा में शामिल है या नहीं -
वाक्य - विन्यास
Range.include(value);
प्रतिलाभ की मात्रा
यदि मूल्य शामिल है, तो एक सही मूल्य देता है अन्यथा गलत।
उदाहरण
<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>