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 350f8ec commit 2001d1dCopy full SHA for 2001d1d
module4-solution/js/SpeakGoodBye.js
@@ -0,0 +1,10 @@
1
+(function (window){
2
+ var byeSpeaker = {};
3
+ var speakWord = "Good Bye";
4
+
5
+ byeSpeaker.speak = function (names) {
6
+ console.log(speakWord + " " + names);
7
+ }
8
9
+ window.byeSpeaker = byeSpeaker;
10
+ })(window);
0 commit comments