typescript object key code example
Example 1: typescriprt specify type of key
var stuff: { [key: string]: string; } = {};
stuff['a'] = '';
stuff['a'] = 4;
interface StringMap { [key: string]: string; }
var stuff2: StringMap = { };
Example 2: object keys javascript
const object1 = {
a: 'somestring',
b: 42,
c: false
};
console.log(Object.keys(object1));
Example 3: js object keys
var myObj = {no:'u',my:'sql'}
var keys = Object.keys(myObj);
Example 4: object.keys javascript
const object1 = {
a: 'somestring',
b: 42,
c: false
};
console.log(Object.keys(object1));