Answers for "iterate dictionary ts"

2

iterate dictionary ts

for (const [key, value] of Object.entries(yourDictionary)) {
	console.log(`(${key}, ${value})`);
}
Posted by: Guest on August-31-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language