Want to get all keys present in an object?
Try
Object.keys( )
Usecase:
let obj = {
year: 2019,
month: 'september'
}
const objKeys = Object.keys(obj);
console.log(objKeys);
// [ 'year', 'month' ]
For further actions, you may consider blocking this person and/or reporting abuse
Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.
Deepak Raj -
Cloud Native Engineer -
Shpetim Haxhiu -
Dmitry Romanoff -
Top comments (2)