Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IacovColisnicenco/f1344d01262945a38e43f42e930120a6 to your computer and use it in GitHub Desktop.
Save IacovColisnicenco/f1344d01262945a38e43f42e930120a6 to your computer and use it in GitHub Desktop.
Example js object with method
// Online Javascript Editor for free
// Write, Edit and Run your Javascript code using JS Online Compiler
const obj = {
name: 'Iacov',
age: function(yearOfBirth) {
const date = new Date().getFullYear();
const res = date - yearOfBirth;
return console.log(`I'm ${res} years old`);
}
};
//Put your age as a paramiter
const res = obj['age'](1987);
//console.log(res);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment