We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 303c3ea commit 06899eaCopy full SHA for 06899ea
app.js
@@ -74,3 +74,8 @@ buttonElement.addEventListener('click', function () {
74
printResult(result, OutputMode.CONSOLE);
75
printResult(result, OutputMode.ALERT);
76
});
77
+function logAndEcho(val) {
78
+ console.log(val);
79
+ return val;
80
+}
81
+logAndEcho('Hi there!').split(' ');
0 commit comments