Understanding the 'object' Datatype to transform nested JSON keys
Recently, I got to experience my first (mock) technical interview where I was asked to transform a valid JSON string's keys from kebab-case to camelCase .
Part 1: A Single JSON string
// example input
const exampleJson = `{
"first-name": "Brando...
blog.mydevdiary.net7 min read