JavaScript - . , (, first underscore.js, , underscore.js).
- (CDN), . CDN:
, ( , ).
, underscore.js, , :
JS library demo.js
function demo() {
var input = [1, 2, 3];
var output = _.map(input, function(item) {
return item * 2;
});
alert(input + " - " + output);
}
demo.html:
<!DOCTYPE HTML>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore.js" type="text/javascript"></script>
<script src="demo.js" type="text/javascript"></script>
</head>
<body>
<a href="#" onclick="demo();">Start the script using underscore.js</a>
</body>
</html>
, :
1,2,3 - 2,4,6