Description
Object.keys
returns the object property
names as an array of strings
Syntax
console.log(Object.keys({x: 0, y: 0, z: 2}));
Nov 13, 20201 min read
Object.keys
returns the object property
names as an array of strings
console.log(Object.keys({x: 0, y: 0, z: 2}));