We all like JavaScript (combined with HTML & CSS) because it’s “open source”, in the sense that we can right-click and learn how things work.
Because of this open nature, and to save kilobytes, some developers decide to minify their code, ie. to squeeze the names of methods and properties into short letter-codes. This makes code smaller in filesize, and very cumbersome to read or decipher. No meaningful names, it’s all a.b(c+d).e();
Yet, there is a narrative potential in that: what if we gave new, arbitrary meanings to those methods and properties? Taking the new names from a pool of semantically related words, say: food, you.chop(apples+pears).cook(); would turn obscure code into a rudimentary recipe!
I’m wondering what narratives would come out from a script that systematically deminifies JS. Anyone wants to make it? Or has a suggestion to start with (I already know that Google is my friend..)?