I am trying to upload a file example.dat using javascript. I thought the right path was using fileReader, but it seems that it is unable to handle this format.
The goal is: importing this .dat file on my side to upload a list of words, in binary, and then after the import, translating them back in to words as the final product. This method is used to save space as I am creating a game where space is limited.
I looked in to DataView but I am having trouble resolving how to import a .dat file and read the resulting import.
Thank you in advanced.