11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
"use strict";
|
|
|
|
var Test = function() {
|
|
var Test = function Test() {};
|
|
return Test;
|
|
}();
|
|
"use strict";
|
|
arr.map(function(x) {
|
|
return x * MULTIPLIER;
|
|
});
|