Skip to content

Commit fbcbc63

Browse files
committed
chapter example complete
1 parent a8bc001 commit fbcbc63

3 files changed

Lines changed: 3643 additions & 15 deletions

File tree

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
function hello(name) {
2-
if (name === undefined)
3-
name = "World";
2+
if (name === undefined) name = "World";
43

5-
return "Hello, " + name + "!";
4+
return "Hello, " + name + "!";
65
}
76

8-
module.exports = hello;
7+
module.exports = hello;

0 commit comments

Comments
 (0)