{"ScriptPreparationCode":"// Example consider object\r\nvar obj = {\r\n a: {\r\n b: {\r\n c: \u0027hello\u0027\r\n }\r\n }\r\n};","TestCases":[{"Name":"Lodash test","Code":"const value = _.get(obj,\u0027a.b.c\u0027,\u0027hello\u0027);","IsDeferred":false},{"Name":"babel optional chaining and babel nullish-coalescing operator","Code":"const value = obj.a?.b?.c ?? \u0027hello\u0027","IsDeferred":false}]}