content/flux/v0/stdlib/experimental/objectkeys.md
experimental.objectKeys() returns an array of property keys in a specified record.
(o: A) => [string] where A: Record
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
({{< req >}}) Record to return property keys from.
import "experimental"
user = {firstName: "John", lastName: "Doe", age: 42}
experimental.objectKeys(o: user)// Returns [firstName, lastName, age]