Javascript – Is there a way to declare an object property without initializing it?
A.S.: Object property order in JS is a very complicated topic. For my intents and purposes, only insertion order matters. TL;DR: Is there a way to declare an object property in JavaScript without giving it a value, so that when…