From 394b5e27dfacb4acca85259825f08cc9e8fe5c82 Mon Sep 17 00:00:00 2001 From: Ciara Giron Date: Sun, 31 Jan 2021 02:32:05 +0000 Subject: [PATCH] Done. --- js/index.js | 6 +++--- js/other_file.js | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/js/index.js b/js/index.js index 24501f105f..e1b5ca36a5 100644 --- a/js/index.js +++ b/js/index.js @@ -1,6 +1,6 @@ -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/js/other_file.js b/js/other_file.js index e69de29bb2..753fba34b8 100644 --- a/js/other_file.js +++ b/js/other_file.js @@ -0,0 +1,4 @@ + +var index = require("./index.js") + +console.log(index.name)