diff --git a/index.js b/index.js index 8151607..06f8c6a 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,10 @@ -var name = "Joe" -var height = "74" - +var name = "Joe"; +var height = "74"; +if (name === "Susan"){ + console.log('The name is correct') +} else { + console.log('Expected the name to be Susan') +} // Don't worry about this module.exports = { name, height diff --git a/other_file.js b/other_file.js index 3759417..cc5a1c2 100644 --- a/other_file.js +++ b/other_file.js @@ -1 +1,3 @@ console.log(name) +var index = require("./index.js") +console.log(name) \ No newline at end of file