Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
const obj = { 'lang-1': 'typescript', 'lang-2': 'c', 'lang-3': 'python', }; const firstKey = Object.keys(obj)[0]; console.log(firstKey); const firstValue = Object.values(obj)[0]; console.log(firstValue); /* run: "lang-1" "typescript" */