object length in typescript code example
Example 1: length of object in typescript
Object.keys(customer).length
Example 2: length in typescript
var uname = "Hello world"
console.log("Length :"+uname.length) // returns the total number of characters
// including whitespace