I have a problem which I can't understand. I use js book to learn javascript, and there was an example of the code.
let a = {};
let b = a;
b = a["folder"] = {}; // how to understand this?
// after that b = {}, a = {folder: {} }
Please explain this :(