Map with index and value
Description
The following code shows how to map value with index and value.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- w w w. ja v a 2s . c o m-->
var arr = [ "a", "b", "c", "d", "e" ]
arr = jQuery.map(arr, function(n, i) {
return (n.toUpperCase() + i);
});
alert(arr);
});
</script>
</head>
<body>
<p></p>
<p></p>
<p></p>
</body>
</html>