How to write and read different JSON objects as BLOB in file using angular
In my Angular program, have a class called myObj and an array called myArrayObj, that contains many instances of myObj. I am currently storing it into Blob and write into file, as shown below. const blob = new Blob([JSON.stringify([myArrayObj])], {…