Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
let obj = { q: 'NodeJS', lang: 'en', limit: 10 }; obj = Object.fromEntries(Object.entries(obj).map(([key, value]) => [key.toUpperCase(), value])); console.log(obj); /* run: { Q: 'NodeJS', LANG: 'en', LIMIT: 10 } */