Skip to content

Commit

Permalink
Copilot second commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jain-anshika authored Jan 27, 2024
1 parent 2e3e819 commit 5d05ca5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions member.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
function skillsMember() {
var member = {
name: 'John Doe',
age: 30,
skills: ['js', 'html', 'css'],
salary: 1000
};
member.showSkills = function () {
member.skills.forEach(function (skill) {
console.log(skill);
});
};
return member;
}

0 comments on commit 5d05ca5

Please sign in to comment.