// SANS shorthand const obj = { greet: function() { return "Hello"; } }; // AVEC shorthand const obj = { greet() { return "Hello"; } };