var user={ name: 'John', userFormat: function(start, end){ return start + this.name + end; } }; console.log(user.userFormat('<<<','>>>'));