var person = "Jim"; function whosGotTheFunc() { person = "Andrew"; } person = "Nick"; whosGotTheFunc(); console.log(person);