From cc55336ea30e83ad2c8d0e4e218a542d15d616d0 Mon Sep 17 00:00:00 2001 From: Evangeline VIllena Date: Sat, 27 Jan 2018 03:27:44 +0000 Subject: [PATCH] Done. --- index.js | 7 +++---- other_file.js | 4 +++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/index.js b/index.js index 8151607..7dd7bad 100644 --- a/index.js +++ b/index.js @@ -1,8 +1,7 @@ -var name = "Joe" -var height = "74" +var name = "Susan" +var height = 70 // Don't worry about this module.exports = { name, height -} - +} \ No newline at end of file diff --git a/other_file.js b/other_file.js index 3759417..13a96a7 100644 --- a/other_file.js +++ b/other_file.js @@ -1 +1,3 @@ -console.log(name) +var index = require("./index.js") + +console.log(index.name) \ No newline at end of file