We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2001d1d commit b29e38aCopy full SHA for b29e38a
module4-solution/js/SpeakHello.js
@@ -0,0 +1,9 @@
1
+(function (window) {
2
+ var helloSpeaker = {};
3
+ var speakWord = "Hello";
4
+
5
+ helloSpeaker.speak = function (names) {
6
+ console.log(speakWord + " " + names);
7
+ }
8
+ window.helloSpeaker = helloSpeaker;
9
+ })(window);
0 commit comments