Newer
Older
// calculator.js
const name = "Joona Pankkonen"
const location = "Jyväskylä"
const birthDate = "10.09.2000"
function getName(){
return name;
}
function getLocation() {
return location;
}
module.exports = {
getName, getLocation, birthDate
};