<p>The function isKeyPressed() will return whether a specified key is being pressed. The function takes in one parameter, 'Keys.' and then the desired key.</p>
<pre><code>var pressed = isKeyPressed(Keys.space)
//sets the variable 'pressed' to whether the 'space' key is being pressed</code></pre>
<p>The function .clone() will create a copy of an object. The function takes in no parameters. If the function is used incorrectly, it may clone exponentially.</p>
<p>The function .remove() will remove an object. The function takes in no parameters.</p>
<pre><code>object.remove();
//removes 'object'</code></pre>
<h4>See Further:</h4>
<olclass="more">
<li>Starscape</li>
<li>Zapper Part 1</li>
</ol>
</a>
</div>
<br>
<!--.play()-->
<br>
<divclass="item">
<aname="random">
<h3>random()</h3>
<p>The function random will return a random number within a range. The function takes in two parameters. The first number in the range, and the final number in the range.</p>
<pre><code>var random = random(1,100)
//sets variable 'random' to a random number between 1 and 100</code></pre>