Skip to content
Snippets Groups Projects
user.js 257 B
Newer Older
AE6374's avatar
AE6374 committed
// 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
};