Your question goes here...What is undefined
The undefined property indicates that a variable has not been assigned a value,
or not declared at all.
let x;
console.log(typeof(x));
/* Output: undefined */
let name1:string = person.name!;
// ^ note the exclamation mark here