NFT explained in Javascript. const MY_OBJECT = {'key': 'value'}; // Not allowed! MY_OBJECT = {'OTHER_KEY': 'value'}; // This is fine! MY_OBJECT.key = 'otherValue';
The resource of a NFT is often externally referenced (e.g. URL to https://image-server/token.jpg) instead of being part of the chain itself, making it mutable Makes me wonder what if the resource get swapped to something else on the server side 🤔

