Cara menemukan item terakhir dalam objek JavaScript

let obj = {a: "b", c: "d", e: "f"};

let lastItem = Object.values(obj).pop();
XenoBino