get(path)
Retrieves a value from nested JSON using a dot-separated path.
Parameters:
path(string) – Dot-separated key path (e.g.,"user.name").
Returns:
The value at the given path or undefined if not found.
Example:
1const name = jm.get("user.name"); // "Alice"