Skip to content

Commit

Permalink
Done.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Anderson committed Feb 28, 2018
1 parent 9d323f4 commit 0815c07
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 2 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
var name = "Joe"
var height = "74"

var name = "Susan"
var height = parseInt("70")

// Don't worry about this
module.exports = { name, height
Expand Down
5 changes: 4 additions & 1 deletion other_file.js
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
console.log(name)
var index = require("./index.js")

console.log(index.name)

0 comments on commit 0815c07

Please sign in to comment.