How can i sort an array of objects? [duplicate]

i have the following array:

mVetor [
  { nome: 'will', idade: 18 },
  { nome: 'marcos', idade: 19 },
  { nome: 'maria', idade: 20 },
  { nome: 'bia', idade: 21 },
  { nome: 'jose', idade: 22 },
  { nome: 'clara', idade: 23 },
  { nome: 'isa', idade: 33 },
  { nome: 'pedro', idade: 38 },
  { nome: 'gabriel', idade: 19 },
  { nome: 'ana', idade: 26 }
]

And i want to know how can i organize and order the array by name(nome) and then age(idade) but i don’t know how