There is an object for storing a multi-level list.
var x = { "Toyota": { "Corolla": { "Поколение 1990-97": null, "Поколение 1999-2002": null, "Поколение 2001 -2004": null }, "Rav 4": null, "Land Cruiser": null, "Avensis": null }, "Volkswagen": null, "Ford": null }
How to display the keys of the first level - Toyota, Volkswagen, Ford?
How to display the keys of the second second, for example - Corolla, Rav 4, Land Cruiser, Avensis?
How to add-delete keys in the "branch" of this object?