JavaScript: Array Objects - Put It In Reverse()
(Page 5 of 5 )
You can write text in reverse (well reverse order I should say) by using the reverse() method. This takes the text in an array and puts it in reverse order. Here, in this example, we will keep switching the order of the text. Note that Bobby is always in the middle:
<html>
<body>
<script type="text/javascript">
var bboys = new Array(3);
bboys[0] = "Greg";
bboys[1] = "Bobby";
bboys[2] = "Peter";
document.write(bboys + "<br />");
document.write(bboys.reverse()+ "<br />");
document.write(bboys.reverse()+ "<br />");
document.write(bboys.reverse());
</script>
</body>
</html>
Here is the print-out:
Greg,Bobby,Peter
Peter,Bobby,Greg
Greg,Bobby,Peter
Peter,Bobby,Greg
Well, we managed to get through five of our thirteen array methods. We will pick up where we left off in our next article, so be sure to check back often. You don't want to miss it.
Till then...
| DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware. |