7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
'use strict';
|
|
|
|
module.exports = function hello() {
|
|
var names = Array.prototype.slice.call(arguments);
|
|
|
|
return 'Hello ' + names.join() + '!';
|
|
}; |