An array of object keys in JavaScript

Given an object:

let obj = {a: 1, b: 2, c: 3};

Get an array of its keys.

enru