How to change all object values in Node.js

1 Answer

0 votes
const obj = {
  id: 383912,
  name: "Albus Dumbledore",
  academicrank: "Professor"
};

Object.keys(obj).forEach((key, index) => {
  	obj[key] = obj[key] + '-' + index + 'Y';
});

console.log(obj);
   
   
   
   
/*
run:
   
{
  id: '383912-0Y',
  name: 'Albus Dumbledore-1Y',
  academicrank: 'Professor-2Y'
}

*/

 



answered Apr 25, 2022 by avibootz

Related questions

...