I have the following JavaScript object :
[{
  Name: "Ishan",
  Code: 1,
  Is_Intern: "Yes",
  DateOfJoining: "01/02/2022",
  Skills: ["VB, DOT.NET, Angular"],
  Status: "Working"
}]How can I add an item to the skills array in this object?
I didn't find any particular article regarding this.

arrayby.push().