It seems to be constmore related to the bindings of environment frames and, thus, is a slightly different beast to objects and properties.
, globals, :
const a = 10;
Object.getOwnPropertyDescriptor(window, "a");
/*
Object:
configurable: true,
enumerable: true
value: 10
writable: false
*/
, .
:
var myObj = {
get STATUS_OK(){ return 42; }
};